Index: test/mjsunit/regress/regress-crbug-644111.js |
diff --git a/test/message/syntactic-tail-call-in-binop-rhs.js b/test/mjsunit/regress/regress-crbug-644111.js |
similarity index 57% |
copy from test/message/syntactic-tail-call-in-binop-rhs.js |
copy to test/mjsunit/regress/regress-crbug-644111.js |
index a586cc84ee0fa2c6ab0b55879b2cc29042392721..2f77590850e34af74fcadd59a27cbcac3a1c9d21 100644 |
--- a/test/message/syntactic-tail-call-in-binop-rhs.js |
+++ b/test/mjsunit/regress/regress-crbug-644111.js |
@@ -2,13 +2,10 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Flags: --harmony-explicit-tailcalls |
-"use strict"; |
+// Flags: --ignition-staging --turbo --validate-asm --always-opt |
-function f() { |
- return 1; |
-} |
- |
-function g() { |
- return b + continue f() ; |
+function Module() { |
+ "use asm"; |
+ return {}; |
} |
+var m = Module(); |