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

Unified Diff: src/ic.cc

Issue 11975044: Allow miss in GENERIC keyed load/store. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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 | no next file » | 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 7963b26f1ec03d7b5c65d4e3605e68053606d4c9..0a99772585691b2da9dbc629e4dbd863bb620677 100644
--- a/src/ic.cc
+++ b/src/ic.cc
@@ -1343,10 +1343,10 @@ void KeyedLoadIC::UpdateCaches(LookupResult* lookup,
}
break;
case MEGAMORPHIC:
+ case GENERIC:
case DEBUG_STUB:
break;
case MONOMORPHIC_PROTOTYPE_FAILURE:
- case GENERIC:
UNREACHABLE();
break;
}
@@ -2124,10 +2124,10 @@ void KeyedStoreIC::UpdateCaches(LookupResult* lookup,
}
break;
case MEGAMORPHIC:
+ case GENERIC:
case DEBUG_STUB:
break;
case MONOMORPHIC_PROTOTYPE_FAILURE:
- case GENERIC:
UNREACHABLE();
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698