]> git.proxmox.com Git - rustc.git/blame - src/binaryen/test/ctor-eval/unsafe_call.wast.out
New upstream version 1.25.0+dfsg1
[rustc.git] / src / binaryen / test / ctor-eval / unsafe_call.wast.out
CommitLineData
abe05a73
XL
1(module
2 (type $0 (func))
3 (memory $0 256 256)
4 (data (i32.const 10) "waka waka waka waka waka")
5 (export "test1" (func $test1))
6 (export "test2" (func $test2))
7 (export "test3" (func $test3))
8 (func $test1 (; 0 ;) (type $0)
9 (call $unsafe-to-call)
10 (i32.store
11 (i32.const 12)
12 (i32.const 115)
13 )
14 (i32.store16
15 (i32.const 20)
16 (i32.const 31353)
17 )
18 (i32.store8
19 (i32.const 23)
20 (i32.const 120)
21 )
22 )
23 (func $unsafe-to-call (; 1 ;) (type $0)
24 (unreachable)
25 )
26)