diff options
Diffstat (limited to 'deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js')
-rw-r--r-- | deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js b/deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js index 704af744d2..72d3938511 100644 --- a/deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js +++ b/deps/v8/test/mjsunit/regress/call-function-in-effect-context-deopt.js @@ -29,7 +29,7 @@ function f(deopt, osr) { var result = "result"; - %_CallFunction(0, 0, function() {}); + %_Call(function() {}, 0, 0); var dummy = deopt + 0; for (var i = 0; osr && i < 2; i++) %OptimizeOsr(); return result; |