summaryrefslogtreecommitdiff
path: root/test/passes/O3_inlining.txt
blob: 808f03ae83f5ce959c39f0f06bc511dbc01058fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(module
 (type $i32_=>_none (func (param i32)))
 (global $global$1 (mut i32) (i32.const 100))
 (memory $0 1 1)
 (export "func_217" (func $1))
 (func $1 (param $0 i32)
  (if
   (global.get $global$1)
   (unreachable)
  )
  (global.set $global$1
   (i32.const 0)
  )
  (if
   (i32.eqz
    (i32.load16_u
     (i32.const 3)
    )
   )
   (unreachable)
  )
 )
)