Reviewers: Erik Corry, Rodolph Perfetta, Description: Remove invalid asserts from last commit.
[email protected] Please review this at http://codereview.chromium.org/4094010/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/stub-cache-ia32.cc M src/x64/stub-cache-x64.cc Index: src/ia32/stub-cache-ia32.cc =================================================================== --- src/ia32/stub-cache-ia32.cc (revision 5744) +++ src/ia32/stub-cache-ia32.cc (working copy) @@ -227,7 +227,6 @@ // Check scratch and extra registers are valid, and extra2 is unused. ASSERT(!scratch.is(no_reg)); - ASSERT(!extra.is(no_reg)); ASSERT(extra2.is(no_reg)); // Check that the receiver isn't a smi. Index: src/x64/stub-cache-x64.cc =================================================================== --- src/x64/stub-cache-x64.cc (revision 5744) +++ src/x64/stub-cache-x64.cc (working copy) @@ -291,7 +291,6 @@ // Check scratch register is valid, extra and extra2 are unused. ASSERT(!scratch.is(no_reg)); - ASSERT(extra.is(no_reg)); ASSERT(extra2.is(no_reg)); // Check that the receiver isn't a smi. -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
