Index: test/mjsunit/regress/regress-448711.js |
diff --git a/test/mjsunit/compiler/regress-ntl-effect.js b/test/mjsunit/regress/regress-448711.js |
similarity index 59% |
copy from test/mjsunit/compiler/regress-ntl-effect.js |
copy to test/mjsunit/regress/regress-448711.js |
index 708fe32828c9197dfa3d8c371ab01cbc1ad3317a..b7628ab2eb75ec5d8179ba57f931696303bf1491 100644 |
--- a/test/mjsunit/compiler/regress-ntl-effect.js |
+++ b/test/mjsunit/regress/regress-448711.js |
@@ -1,16 +1,15 @@ |
// Copyright 2015 the V8 project authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
- |
+// |
// Flags: --allow-natives-syntax |
-function g() { |
- throw 0; |
-} |
- |
function f() { |
- g(); |
- while (1) {} |
+ this.a = { text: "Hello!" }; |
} |
- |
-assertThrows(function () { f(); }); |
+var v4 = new f(); |
+var v7 = new f(); |
+v7.b = {}; |
+Object.defineProperty(v4, '2', {}); |
+var v6 = new f(); |
+v6.a = {}; |