| Index: test/mjsunit/regress/regress-333594.js
|
| diff --git a/test/mjsunit/regress/regress-110509.js b/test/mjsunit/regress/regress-333594.js
|
| similarity index 86%
|
| copy from test/mjsunit/regress/regress-110509.js
|
| copy to test/mjsunit/regress/regress-333594.js
|
| index 132bd233bee32f6c84061049224ea43901dae06a..6f6dbaafcd64d8b752226a290df525ca200b69a0 100644
|
| --- a/test/mjsunit/regress/regress-110509.js
|
| +++ b/test/mjsunit/regress/regress-333594.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2012 the V8 project authors. All rights reserved.
|
| +// Copyright 2014 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -27,15 +27,16 @@
|
|
|
| // Flags: --allow-natives-syntax
|
|
|
| -// Verify that LRandom preserves rsi correctly.
|
| +var a = { x: 1.1 };
|
| +a.x = 0;
|
| +var G = a.x;
|
| +var o = { x: {} };
|
|
|
| -function foo() {
|
| - Math.random();
|
| - new Function("");
|
| +function func() {
|
| + return {x: G};
|
| }
|
|
|
| -foo();
|
| -foo();
|
| -foo();
|
| -%OptimizeFunctionOnNextCall(foo);
|
| -foo();
|
| +func();
|
| +func();
|
| +%OptimizeFunctionOnNextCall(func);
|
| +assertEquals(0, func().x);
|
|
|