Revision: 5699
Author: [email protected]
Date: Mon Oct 25 08:29:06 2010
Log: Last minute typos from the last change.
TBR=vegorov
Review URL: http://codereview.chromium.org/4037006
http://code.google.com/p/v8/source/detail?r=5699

Modified:
 /branches/bleeding_edge/src/ia32/stub-cache-ia32.cc
 /branches/bleeding_edge/test/cctest/test-heap.cc

=======================================
--- /branches/bleeding_edge/src/ia32/stub-cache-ia32.cc Mon Oct 25 08:22:03 2010 +++ /branches/bleeding_edge/src/ia32/stub-cache-ia32.cc Mon Oct 25 08:29:06 2010
@@ -846,7 +846,7 @@
           name,
           scratch,
           miss);
-      if (result->IsFailure()) return t;
+      if (result->IsFailure()) return result;
     }
     ASSERT(current->IsJSObject());
     current = JSObject::cast(current->GetPrototype());
=======================================
--- /branches/bleeding_edge/test/cctest/test-heap.cc Mon Oct 25 08:22:03 2010 +++ /branches/bleeding_edge/test/cctest/test-heap.cc Mon Oct 25 08:29:06 2010
@@ -512,7 +512,7 @@
     CHECK(a->IsSymbol());
     Object* b;
     MaybeObject* maybe_b = Heap::LookupAsciiSymbol(string);
-    if (!maybe_maybe_b->ToObject(&b)) continue;
+    if (!maybe_b->ToObject(&b)) continue;
     CHECK_EQ(b, a);
     CHECK(String::cast(b)->IsEqualTo(CStrVector(string)));
   }

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

Reply via email to