Revision: 6957
Author: [email protected]
Date: Fri Feb 25 19:10:14 2011
Log: [Isolates] Lint fixes (whitespaces) after merge 6300:6500
Review URL: http://codereview.chromium.org/6597030
http://code.google.com/p/v8/source/detail?r=6957

Modified:
 /branches/experimental/isolates/src/ia32/stub-cache-ia32.cc
 /branches/experimental/isolates/src/ic.cc

=======================================
--- /branches/experimental/isolates/src/ia32/stub-cache-ia32.cc Fri Feb 25 19:01:58 2011 +++ /branches/experimental/isolates/src/ia32/stub-cache-ia32.cc Fri Feb 25 19:10:14 2011
@@ -1351,7 +1351,7 @@


 MaybeObject* CallStubCompiler::GenerateMissBranch() {
-  MaybeObject* maybe_obj =
+  MaybeObject* maybe_obj =
       Isolate::Current()->stub_cache()->ComputeCallMiss(
           arguments().immediate(), kind_);
   Object* obj;
=======================================
--- /branches/experimental/isolates/src/ic.cc   Fri Feb 25 19:01:58 2011
+++ /branches/experimental/isolates/src/ic.cc   Fri Feb 25 19:10:14 2011
@@ -623,7 +623,7 @@
       // call; used for rewriting to monomorphic state and making sure
       // that the code stub is in the stub cache.
       JSFunction* function = lookup->GetConstantFunction();
-      maybe_code =
+      maybe_code =
           isolate()->stub_cache()->ComputeCallConstant(argc,
                                                        in_loop,
                                                        kind_,
@@ -1253,7 +1253,7 @@
       } else if (state == UNINITIALIZED &&
                  key->IsSmi() &&
                  receiver->map()->has_fast_elements()) {
-        MaybeObject* probe =
+        MaybeObject* probe =
isolate()->stub_cache()->ComputeKeyedLoadSpecialized(*receiver);
         stub =
probe->IsFailure() ? NULL : Code::cast(probe->ToObjectUnchecked());

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to