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; |