| Index: test/mjsunit/regress/regress-store-global-proxy.js
|
| diff --git a/test/mjsunit/regress/regress-347912.js b/test/mjsunit/regress/regress-store-global-proxy.js
|
| similarity index 63%
|
| copy from test/mjsunit/regress/regress-347912.js
|
| copy to test/mjsunit/regress/regress-store-global-proxy.js
|
| index b609e36c3d4981219abcd1c244ab46f849b2863b..c85531c5fd917daa67b54e87141a164b90f3729b 100644
|
| --- a/test/mjsunit/regress/regress-347912.js
|
| +++ b/test/mjsunit/regress/regress-store-global-proxy.js
|
| @@ -2,9 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// Flags: --allow-natives-syntax
|
| +delete Object.prototype.__proto__;
|
|
|
| -var __v_4 = {};
|
| -__v_2 = {};
|
| -__v_2[1024] = 0;
|
| -%DebugPrint(__v_4);
|
| +function f() {
|
| + this.toString = 1;
|
| +}
|
| +
|
| +f.apply({});
|
| +f();
|
|
|