summaryrefslogtreecommitdiff
path: root/test/passes/local-cse.wast
blob: 09534be60d9f532cace9df000bb38f209083a2f0 (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
(module
 (global $glob (mut i32) (i32.const 1))
 (func $i64-shifts (result i64)
  (local $temp i64)
  (set_local $temp
   (i64.add
    (i64.const 1)
    (i64.const 2)
   )
  )
  (set_local $temp
   (i64.const 9999)
  )
  (set_local $temp
   (i64.add
    (i64.const 1)
    (i64.const 2)
   )
  )
  (get_local $temp)
 )
 (func $global
  (local $x i32)
  (local $y i32)
  (set_local $x (get_global $glob))
  (set_local $y (get_global $glob))
  (set_local $y (get_global $glob))
 )
)