| Index: test/mjsunit/regress/regress-crbug-145961.js
|
| diff --git a/test/mjsunit/regress/regress-crbug-145961.js b/test/mjsunit/regress/regress-crbug-145961.js
|
| index b05cf11cc3c93d8de3631ea5e024886a1d5873ec..eb88945e0f9cd814b26787e31ccf5e065acbbf58 100644
|
| --- a/test/mjsunit/regress/regress-crbug-145961.js
|
| +++ b/test/mjsunit/regress/regress-crbug-145961.js
|
| @@ -33,7 +33,7 @@ function test() {
|
| return Math.min(x, x);
|
| }
|
|
|
| -assertEquals(-1, test());
|
| -assertEquals(-1, test());
|
| +assertEquals(0, test());
|
| +assertEquals(0, test());
|
| %OptimizeFunctionOnNextCall(test);
|
| -assertEquals(-1, test());
|
| +assertEquals(0, test());
|
|
|