summaryrefslogtreecommitdiff
path: root/test/passes/untee.txt
blob: c3299ddf80b9e7754fb1ad7590c5835d03ad3d12 (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)
    (set_local $x
     (i32.const 1)
    )
    (get_local $x)
   )
  )
  (drop
   (block (result f64)
    (set_local $y
     (f64.const 2)
    )
    (get_local $y)
   )
  )
  (set_local $x
   (block (result i32)
    (set_local $x
     (i32.const 3)
    )
    (get_local $x)
   )
  )
  (set_local $x
   (block (result i32)
    (set_local $x
     (block (result i32)
      (set_local $x
       (i32.const 3)
      )
      (get_local $x)
     )
    )
    (get_local $x)
   )
  )
  (drop
   (unreachable)
  )
 )
)