Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Unified Diff: src/stub-cache.cc

Issue 171533017: Remove bogus ASSERTs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove blocks entirely Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/stub-cache.cc
diff --git a/src/stub-cache.cc b/src/stub-cache.cc
index a12976a6c214c984c3414ff03eaf76b9853e2349..f23e5aaeb355d167790e6a22369d5b2b80db23ff 100644
--- a/src/stub-cache.cc
+++ b/src/stub-cache.cc
@@ -194,12 +194,6 @@ Handle<Code> StubCache::ComputeLoadNonexistent(Handle<Name> name,
Handle<Code> handler = FindHandler(
cache_name, stub_holder, Code::LOAD_IC, flag, Code::FAST);
if (!handler.is_null()) {
-#ifdef DEBUG
- LoadStubCompiler compiler(isolate_, kNoExtraICState, flag);
- Handle<Code> compiled = compiler.CompileLoadNonexistent(
- type, last, cache_name);
- ASSERT(compiled->flags() == handler->flags());
-#endif
return handler;
}
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698