summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/regress/movable-traps.js
blob: ac5577032bd22e1550e91684c800e3f0153a7f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
let bodies = [
    `
    i32.const 1
    i32.const 0
    i32.div_s
    `,
    `
    i32.const 1
    i32.const 0
    i32.rem_s
    `,
    `
    f64.const 1.7976931348623157e+308
    i64.trunc_s/f64
    `,
    `
    f32.const 3.40282347e+38
    i32.trunc_s/f32
    `
];

for (let body of bodies) {
    wasmFullPass(`
    (module
        (func $f (param $x i32) (result i32)
            loop $top (result i32)
                local.get $x
                if
                    local.get $x
                    br 2
                end
                ${body}
                br $top
            end
        )
        (export "run" (func $f))
    )`, 42, {}, 42);
}