summaryrefslogtreecommitdiff
path: root/test/passes/untee.txt
blob: 2c21ae17817d838fbb3f6dd03c6cf1802a9300af (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
45
46
47
(module
 (type $0 (func))
 (func $tee (; 0 ;) (type $0)
  (local $x i32)
  (local $y f64)
  (drop
   (block (result i32)
    (local.set $x
     (i32.const 1)
    )
    (local.get $x)
   )
  )
  (drop
   (block (result f64)
    (local.set $y
     (f64.const 2)
    )
    (local.get $y)
   )
  )
  (local.set $x
   (block (result i32)
    (local.set $x
     (i32.const 3)
    )
    (local.get $x)
   )
  )
  (local.set $x
   (block (result i32)
    (local.set $x
     (block (result i32)
      (local.set $x
       (i32.const 3)
      )
      (local.get $x)
     )
    )
    (local.get $x)
   )
  )
  (drop
   (unreachable)
  )
 )
)