blob: 07a980a1ed16a593a9d971ea808ce9ae79422fa7 (
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
39
40
|
load(libdir + "wasm.js");
let bodies = [
`
i32.const 1
i32.const 0
i32.div_s
`,
`
i32.const 1
i32.const 0
i32.rem_s
`,
`
f64.const 1797693134862315708145274e284
i64.trunc_s/f64
`,
`
f32.const 1797693134862315708145274e284
i32.trunc_s/f32
`
];
for (let body of bodies) {
wasmFullPass(`
(module
(func $f (param $x i32) (result i32)
loop $top
get_local $x
if
get_local $x
br 2
end
${body}
br $top
end
)
(export "run" $f)
)`, 42, {}, 42);
}
|