| Index: test/mjsunit/compiler/regress-445732.js | 
| diff --git a/test/mjsunit/regress/regress-store-global-proxy.js b/test/mjsunit/compiler/regress-445732.js | 
| similarity index 63% | 
| copy from test/mjsunit/regress/regress-store-global-proxy.js | 
| copy to test/mjsunit/compiler/regress-445732.js | 
| index c85531c5fd917daa67b54e87141a164b90f3729b..199a29a5f859dbe2e5d63c3cc6cfa06a76b0be99 100644 | 
| --- a/test/mjsunit/regress/regress-store-global-proxy.js | 
| +++ b/test/mjsunit/compiler/regress-445732.js | 
| @@ -2,11 +2,10 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| -delete Object.prototype.__proto__; | 
| +// Flags: --allow-natives-syntax --turbo-asm | 
|  | 
| -function f() { | 
| -  this.toString = 1; | 
| -} | 
| +"use asm"; | 
|  | 
| -f.apply({}); | 
| +%NeverOptimizeFunction(f); | 
| +function f() { } | 
| f(); | 
|  |