Index: test/mjsunit/regress/regress-484544.js |
diff --git a/test/message/super-in-function.js b/test/mjsunit/regress/regress-484544.js |
similarity index 56% |
copy from test/message/super-in-function.js |
copy to test/mjsunit/regress/regress-484544.js |
index edaa0e4eadc7befdb7ed28a3e06eaa827c4388f0..709a890376bfea25500efb0467ff606acf42b131 100644 |
--- a/test/message/super-in-function.js |
+++ b/test/mjsunit/regress/regress-484544.js |
@@ -2,9 +2,12 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
// |
-// Flags: --harmony-classes |
-'use strict'; |
+// Flags: --nouse-allocation-folding --stress-compaction --predictable |
function f() { |
- super.x(); |
+ return [[], [], [[], [], []]]; |
+} |
+ |
+for (var i=0; i<10000; i++) { |
+ f(); |
} |