Revision: 19512
Author:   [email protected]
Date:     Thu Feb 20 16:35:25 2014 UTC
Log: Remove ASSERT related to major-key, it's not given that they match.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/166323015
http://code.google.com/p/v8/source/detail?r=19512

Modified:
 /branches/bleeding_edge/src/ic.cc
 /branches/bleeding_edge/src/stub-cache.cc

=======================================
--- /branches/bleeding_edge/src/ic.cc   Thu Feb 20 12:40:34 2014 UTC
+++ /branches/bleeding_edge/src/ic.cc   Thu Feb 20 16:35:25 2014 UTC
@@ -845,7 +845,6 @@
 #ifdef DEBUG
     Handle<Code> compiled = CompileHandler(
         lookup, object, name, value, cache_holder);
-    ASSERT(compiled->major_key() == code->major_key());
     ASSERT(compiled->flags() == code->flags());
 #endif
     return code;
=======================================
--- /branches/bleeding_edge/src/stub-cache.cc   Thu Feb 20 12:40:34 2014 UTC
+++ /branches/bleeding_edge/src/stub-cache.cc   Thu Feb 20 16:35:25 2014 UTC
@@ -198,7 +198,6 @@
     LoadStubCompiler compiler(isolate_, kNoExtraICState, flag);
     Handle<Code> compiled = compiler.CompileLoadNonexistent(
         type, last, cache_name);
-    ASSERT(compiled->major_key() == handler->major_key());
     ASSERT(compiled->flags() == handler->flags());
 #endif
     return handler;

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to