blob: b62165ef54bd378c23b9db02dff0958f8e0f917f (
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
|
(module
(func $test_div (param $0 i32) (param $1 i64)
(drop (i32.div_s (local.get $0) (local.get $0)))
(drop (i32.div_u (local.get $0) (local.get $0)))
(drop (i64.div_s (local.get $1) (local.get $1)))
(drop (i64.div_u (local.get $1) (local.get $1)))
)
(func $test_rem (param $0 i32) (param $1 i64)
(drop (i32.rem_s (local.get $0) (local.get $0)))
(drop (i32.rem_u (local.get $0) (local.get $0)))
(drop (i64.rem_s (local.get $1) (local.get $1)))
(drop (i64.rem_u (local.get $1) (local.get $1)))
)
(func $test_f32_to_int (param $0 f32)
(drop (i32.trunc_f32_s (local.get $0)))
(drop (i32.trunc_f32_u (local.get $0)))
(drop (i64.trunc_f32_s (local.get $0)))
(drop (i64.trunc_f32_u (local.get $0)))
)
(func $test_f64_to_int (param $0 f64)
(drop (i32.trunc_f64_s (local.get $0)))
(drop (i32.trunc_f64_u (local.get $0)))
(drop (i64.trunc_f64_s (local.get $0)))
(drop (i64.trunc_f64_u (local.get $0)))
)
)
|