| Index: test/mjsunit/regress/regress-crbug-624919.js
|
| diff --git a/test/mjsunit/compiler/regress-dead-throw-inlining.js b/test/mjsunit/regress/regress-crbug-624919.js
|
| similarity index 77%
|
| copy from test/mjsunit/compiler/regress-dead-throw-inlining.js
|
| copy to test/mjsunit/regress/regress-crbug-624919.js
|
| index 097a20bc41d34760931928c45e4117888295f20a..5a2b100daff3dcd5f2d16f253e589baa106f4370 100644
|
| --- a/test/mjsunit/compiler/regress-dead-throw-inlining.js
|
| +++ b/test/mjsunit/regress/regress-crbug-624919.js
|
| @@ -4,8 +4,9 @@
|
|
|
| // Flags: --allow-natives-syntax
|
|
|
| -function g() { if (false) throw 0; }
|
| -function f() { g(); }
|
| +function f(a, b, c, d, e) {
|
| + if (a && (b, c ? d() : e())) return 0;
|
| +}
|
|
|
| f();
|
| f();
|
|
|