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

Unified Diff: test/mjsunit/compiler/regress-lazy-deopt.js

Issue 1419813010: [runtime] Remove the very dangerous %_CallFunction intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | « test/mjsunit/call-runtime-tail.js ('k') | test/mjsunit/harmony/proxies-function.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/regress-lazy-deopt.js
diff --git a/test/mjsunit/compiler/regress-lazy-deopt.js b/test/mjsunit/compiler/regress-lazy-deopt.js
index d1c3d01dc6f832275581435d1c5280640b03629a..766220763bdd5c3c88a0e9c2fd93a26ff5f0f230 100644
--- a/test/mjsunit/compiler/regress-lazy-deopt.js
+++ b/test/mjsunit/compiler/regress-lazy-deopt.js
@@ -27,7 +27,7 @@
// Flags: --allow-natives-syntax
-// Test lazy deoptimization after CallFunctionStub.
+// Test lazy deoptimization after Call builtin.
function foo() { return 1; }
@@ -37,7 +37,7 @@ function f(x, y) {
%DeoptimizeFunction(f);
return 1;
}
- a[0] = %_CallFunction(null, x - 1, f);
+ a[0] = %_Call(f, null, x - 1);
return x >> a[0];
}
« no previous file with comments | « test/mjsunit/call-runtime-tail.js ('k') | test/mjsunit/harmony/proxies-function.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698