summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/multi-value/regress-1631423.js
blob: 2460830dfd452bb9c88732918108c7a451c3de70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
wasmEvalText(`
    (module
      (func $main (export "main")
        (local i32)
        i32.const 1
        i32.const 2
        i32.const 3
        (loop (param i32 i32 i32)
          local.get 0
          i32.const 4
          i32.const 5
          i32.const 6
          i32.const 7
          br_if 0
          unreachable)))`);