| Index: test/mjsunit/compiler/regress-4389-3.js
|
| diff --git a/test/mjsunit/compiler/regress-491578.js b/test/mjsunit/compiler/regress-4389-3.js
|
| similarity index 55%
|
| copy from test/mjsunit/compiler/regress-491578.js
|
| copy to test/mjsunit/compiler/regress-4389-3.js
|
| index c27570456c31e9a191fe1f4f1ea17b80f29de98e..9aa72d1ac9ff196c5c113c207c7a1e414f84f950 100644
|
| --- a/test/mjsunit/compiler/regress-491578.js
|
| +++ b/test/mjsunit/compiler/regress-4389-3.js
|
| @@ -2,14 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// Flags: --allow-natives-syntax
|
| +// Flags: --allow-natives-syntax --dead-code-elimination
|
|
|
| -function foo(x) {
|
| - if (x === undefined) return;
|
| - while (true) {
|
| - while (1 || 2) { }
|
| - f();
|
| - }
|
| -}
|
| +function foo(x) { Math.floor(x); }
|
| +foo(1);
|
| +foo(2);
|
| %OptimizeFunctionOnNextCall(foo);
|
| -foo();
|
| +assertThrows(function() { foo(Symbol()) }, TypeError);
|
|
|