blob: 4e2136be5eb868d7595b294734c557589acd71cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
(module
(type $0 (func (result i32)))
(type $1 (func))
(export "func_44_invoker" (func $1))
(func $0 (; 0 ;) (type $0) (result i32)
(i32.trunc_f64_s
(f64.neg
(f64.const -7094) ;; negation of a negative must not be emitted as "--" in js, that will not parse
)
)
)
(func $1 (; 1 ;) (type $1)
(drop
(call $0)
)
)
)
|