| Index: test/mjsunit/regress/regress-crbug-423687.js
|
| diff --git a/test/mjsunit/regress/regress-crbug-387636.js b/test/mjsunit/regress/regress-crbug-423687.js
|
| similarity index 67%
|
| copy from test/mjsunit/regress/regress-crbug-387636.js
|
| copy to test/mjsunit/regress/regress-crbug-423687.js
|
| index 1e50ace45a293c8561042f1a09c8fcd505b43dc2..60003527e81453b895ee8ad5b9c3517a5648ff8f 100644
|
| --- a/test/mjsunit/regress/regress-crbug-387636.js
|
| +++ b/test/mjsunit/regress/regress-crbug-423687.js
|
| @@ -4,11 +4,7 @@
|
|
|
| // Flags: --allow-natives-syntax
|
|
|
| -function f() {
|
| - [].indexOf(0x40000000);
|
| -}
|
| +var json = '{"a":{"c":2.1,"d":0},"b":{"c":7,"1024":8}}';
|
| +var data = JSON.parse(json);
|
|
|
| -f();
|
| -f();
|
| -%OptimizeFunctionOnNextCall(f);
|
| -f();
|
| +data.b.c++;
|
|
|