summaryrefslogtreecommitdiff
path: root/test/passes/O3_inlining.wast
blob: 8d1a18f2f9430228e09a5df13b8724745c99ad58 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(module
 (global $global$0 (mut f64) (f64.const -32768))
 (global $global$1 (mut i32) (i32.const 100))
 (memory $0 1 1)
 (export "func_217" (func $1))
 (func $0
  (if
   (global.get $global$1)
   (unreachable)
  )
  (global.set $global$1
   (i32.const 0)
  )
  (block $label$2
   (global.set $global$0
    (block $label$3 (result f64)
     (br_if $label$2
      (if (result i32)
       (i32.load16_u offset=3
        (i32.const 0)
       )
       (i32.const 1)
       (i32.const 0)
      )
     )
     (unreachable)
    )
   )
  )
 )
 (func $1 (param $var$0 i32)
  (drop
   (call $2
    (f32.const 1)
    (i32.const 1)
    (i32.const 0)
   )
  )
 )
 (func $2 (param $var$0 f32) (param $var$1 i32) (param $var$2 i32) (result i32)
  (call $0)
  (i32.const 0)
 )
)