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

Unified Diff: src/ic.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 | « no previous file | src/stub-cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.cc
diff --git a/src/ic.cc b/src/ic.cc
index 29281339f0ed2b52a9a165d45388aafa228a92a0..7c156e59d84cfd20a52a8dbf2878b95cf0f3044a 100644
--- a/src/ic.cc
+++ b/src/ic.cc
@@ -842,11 +842,6 @@ Handle<Code> IC::ComputeHandler(LookupResult* lookup,
name, handle(stub_holder->map()), kind(), cache_holder,
lookup->holder()->HasFastProperties() ? Code::FAST : Code::NORMAL);
if (!code.is_null()) {
-#ifdef DEBUG
- Handle<Code> compiled = CompileHandler(
- lookup, object, name, value, cache_holder);
- ASSERT(compiled->flags() == code->flags());
-#endif
return code;
}
« no previous file with comments | « no previous file | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698