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

Unified Diff: test/mjsunit/regress/regress-crbug-405922.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/regress/regress-3183.js ('k') | test/mjsunit/strong/function-arity.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-405922.js
diff --git a/test/mjsunit/regress/regress-crbug-405922.js b/test/mjsunit/regress/regress-crbug-405922.js
index 9f76a862dbef5a257ab287737652f59c503fbdd1..a38ac869124a089639222a846fbe480447da8e11 100644
--- a/test/mjsunit/regress/regress-crbug-405922.js
+++ b/test/mjsunit/regress/regress-crbug-405922.js
@@ -18,7 +18,7 @@ function listener(event, exec_state, event_data, data) {
Debug.setListener(listener);
function f(x) {
- if (x > 0) %_CallFunction(null, x-1, f);
+ if (x > 0) %_Call(f, null, x-1);
}
debugger;
« no previous file with comments | « test/mjsunit/regress/regress-3183.js ('k') | test/mjsunit/strong/function-arity.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698