summaryrefslogtreecommitdiff
path: root/test/passes/local-cse.txt
blob: 62395f73fdad58b4c1275a1746819dd5476944f8 (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
(module
 (type $0 (func (result i64)))
 (type $1 (func))
 (global $glob (mut i32) (i32.const 1))
 (func $i64-shifts (; 0 ;) (type $0) (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 (; 1 ;) (type $1)
  (local $x i32)
  (local $y i32)
  (set_local $x
   (get_global $glob)
  )
  (set_local $y
   (get_local $x)
  )
  (set_local $y
   (get_local $x)
  )
 )
)