Chromium Code Reviews| Index: test/mjsunit/compiler/regress-2.js |
| diff --git a/test/mjsunit/compiler/regress-2.js b/test/mjsunit/compiler/regress-2.js |
| index a26ef32a6cd81d399e4e8ab5e4fa6ef9c6a7389c..10d883f72b3fe93a96a9a379f6ec682d5c9a411d 100644 |
| --- a/test/mjsunit/compiler/regress-2.js |
| +++ b/test/mjsunit/compiler/regress-2.js |
| @@ -27,12 +27,10 @@ |
| // The compilation of this function currently fails when resolving |
| // control flow in the register allocator. |
| -function TestCreateString(n) |
| -{ |
| +function TestCreateString(n) { |
| var l = n * 1; |
| var r = 'r'; |
| - while (r.length < n) |
| - { |
| + while (r.length < n) { |
| r = r + r; |
| } |
| return r; |