Reviewers: Vyacheslav Egorov, Description: Last minute typos from the last change.
Please review this at http://codereview.chromium.org/4037006/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/stub-cache-ia32.cc M test/cctest/test-heap.cc Index: src/ia32/stub-cache-ia32.cc =================================================================== --- src/ia32/stub-cache-ia32.cc (revision 5698) +++ src/ia32/stub-cache-ia32.cc (working copy) @@ -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()); Index: test/cctest/test-heap.cc =================================================================== --- test/cctest/test-heap.cc (revision 5698) +++ test/cctest/test-heap.cc (working copy) @@ -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
