Chromium Code Reviews| Index: test/mjsunit/regress/regress-294.js |
| diff --git a/test/mjsunit/regress/regress-294.js b/test/mjsunit/regress/regress-294.js |
| index 285b447fb570a771a4aa6eb308ead47e3a62ced7..f3f7cf49a7abaf1c1c7d70adefd145cb484a2d30 100644 |
| --- a/test/mjsunit/regress/regress-294.js |
| +++ b/test/mjsunit/regress/regress-294.js |
| @@ -32,8 +32,9 @@ function f() { return false; } |
| function test(x) { |
| var y = x; |
| - if (x == "kat") x = "kat"; |
| - else { |
| + if (x == "kat") { |
| + x = "kat"; |
| + } else { |
| x = "hund"; |
| var z = f(); |
| if (!z) x = "kat"; |