Index: test/mjsunit/regress/regress-crbug-632800.js |
diff --git a/test/message/syntactic-tail-call-in-extends.js b/test/mjsunit/regress/regress-crbug-632800.js |
similarity index 56% |
copy from test/message/syntactic-tail-call-in-extends.js |
copy to test/mjsunit/regress/regress-crbug-632800.js |
index 86bf77ebbeb3b0733969ea43f42efa862a2e67ed..6296572c17444150e0889be13ea9bfaab8a259a3 100644 |
--- a/test/message/syntactic-tail-call-in-extends.js |
+++ b/test/mjsunit/regress/regress-crbug-632800.js |
@@ -2,9 +2,9 @@ |
// 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 --ignition-osr --turbo-from-bytecode |
-function g() { |
- return class A extends continue f() {}; |
+function osr() { |
+ for (var i = 0; i < 50000; ++i) Math.random(); |
} |
+osr(); |