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

Unified Diff: src/virtual-frame.cc

Issue 42602: Simplify the way the code generator handles calls to IC stubs. Before... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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
Index: src/virtual-frame.cc
===================================================================
--- src/virtual-frame.cc (revision 1607)
+++ src/virtual-frame.cc (working copy)
@@ -455,10 +455,12 @@
case Code::FUNCTION:
spilled_args = dropped_args + 1;
break;
+#ifdef ARM
case Code::KEYED_LOAD_IC:
ASSERT(dropped_args == 0);
spilled_args = 2;
break;
+#endif
default:
// The other types of code objects are called with values
// in specific registers, and are handled in functions with

Powered by Google App Engine
This is Rietveld 408576698