| Index: test/mjsunit/regress/regress-617526.js
 | 
| diff --git a/test/mjsunit/regress/regress-617526.js b/test/mjsunit/regress/regress-617526.js
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..a7cd5ce1dd1fa62b34457cc7482d39eda0de5b81
 | 
| --- /dev/null
 | 
| +++ b/test/mjsunit/regress/regress-617526.js
 | 
| @@ -0,0 +1,23 @@
 | 
| +// Copyright 2016 the V8 project authors. All rights reserved.
 | 
| +// Use of this source code is governed by a BSD-style license that can be
 | 
| +// found in the LICENSE file.
 | 
| +
 | 
| +// Flags: --expose-wasm
 | 
| +
 | 
| +// Changing the code a little to avoid infinite loop
 | 
| +
 | 
| +function __f_109() {
 | 
| +  "use asm";
 | 
| +  function __f_18() {
 | 
| +    var a = 0;
 | 
| +    while(2147483648) {
 | 
| +      a = 1;
 | 
| +      break;
 | 
| +    }
 | 
| +    return a|0;
 | 
| +  }
 | 
| +  return {__f_18: __f_18};
 | 
| +}
 | 
| +
 | 
| +var wasm = Wasm.instantiateModuleFromAsm( __f_109.toString());
 | 
| +assertEquals(1, wasm.__f_18());
 | 
| 
 |