bug1392105.js (246B)
1 // |jit-test| --arm-asm-nop-fill=1 2 3 var code = "(module "; 4 for (var i = 0; i < 100; i++) 5 code += "(func (param i32) (result i32) (i32.add (i32.const 1) (local.get 0))) "; 6 code += ")"; 7 var buf = wasmTextToBinary(code); 8 WebAssembly.compile(buf);