summaryrefslogtreecommitdiff
path: root/test/passes/O3_inlining.txt
blob: e4b5cdb395af43190d27dd5a2a13c321d6ff0690 (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
27
(module
 (type $1 (func (param i32)))
 (memory $0 1 1)
 (global $global$1 (mut i32) (i32.const 100))
 (export "func_217" (func $1))
 (func $1 (; 0 ;) (type $1) (param $0 i32)
  (if
   (global.get $global$1)
   (unreachable)
  )
  (global.set $global$1
   (i32.const 0)
  )
  (if
   (i32.eqz
    (if (result i32)
     (i32.load16_u
      (i32.const 3)
     )
     (i32.const 1)
     (i32.const 0)
    )
   )
   (unreachable)
  )
 )
)