Reviewers: Vitaly,

Message:
TBR=vitalyr

Description:
[Isolates] Lint fixes (whitespaces) after merge 6300:6500

Please review this at http://codereview.chromium.org/6597030/

SVN Base: http://v8.googlecode.com/svn/branches/experimental/isolates/

Affected files:
  M     src/ia32/stub-cache-ia32.cc
  M     src/ic.cc


Index: src/ia32/stub-cache-ia32.cc
===================================================================
--- src/ia32/stub-cache-ia32.cc (revision 6956)
+++ src/ia32/stub-cache-ia32.cc (working copy)
@@ -1351,7 +1351,7 @@


 MaybeObject* CallStubCompiler::GenerateMissBranch() {
-  MaybeObject* maybe_obj =
+  MaybeObject* maybe_obj =
       Isolate::Current()->stub_cache()->ComputeCallMiss(
           arguments().immediate(), kind_);
   Object* obj;
Index: src/ic.cc
===================================================================
--- src/ic.cc   (revision 6956)
+++ src/ic.cc   (working copy)
@@ -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