-
-
Notifications
You must be signed in to change notification settings - Fork 687
Expand file tree
/
Copy pathassert.debug.wat
More file actions
39 lines (39 loc) · 665 Bytes
/
assert.debug.wat
File metadata and controls
39 lines (39 loc) · 665 Bytes
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
(module
(type $none_=>_none (func))
(global $~lib/memory/__data_end i32 (i32.const 8))
(global $~lib/memory/__stack_pointer (mut i32) (i32.const 32776))
(global $~lib/memory/__heap_base i32 (i32.const 32776))
(memory $0 0)
(table $0 1 1 funcref)
(elem $0 (i32.const 1))
(export "memory" (memory $0))
(start $~start)
(func $start:assert
i32.const 1
drop
i32.const 1
drop
i32.const 1
i32.const 0
i32.gt_u
drop
f64.const 0.5
drop
f64.const 0.5
f64.const 0.4
f64.gt
drop
i64.const 4294967296
drop
i64.const 4294967296
i64.const 1
i64.gt_s
drop
i32.const 1
i32.eqz
drop
)
(func $~start
call $start:assert
)
)