OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 function Module() { | |
6 "use asm"; | |
7 function f() { | |
8 var i = (140737463189505); | |
9 do { | |
10 i = i + i | 0; | |
11 x = undefined + i | 0; | |
12 } while (!i); | |
13 } | |
14 return { f: f }; | |
15 } | |
16 | |
17 Module().f(); | |
OLD | NEW |