summaryrefslogtreecommitdiff
path: root/test/signext.wast.from-wast
blob: 0256c06ff030c450e8022aadc467eca58021318f (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
(module
 (type $0 (func))
 (memory $0 0)
 (func $signext (; 0 ;) (type $0)
  (local $0 i32)
  (local $1 i64)
  (drop
   (i32.extend8_s
    (get_local $0)
   )
  )
  (drop
   (i32.extend16_s
    (get_local $0)
   )
  )
  (drop
   (i64.extend8_s
    (get_local $1)
   )
  )
  (drop
   (i64.extend16_s
    (get_local $1)
   )
  )
  (drop
   (i64.extend32_s
    (get_local $1)
   )
  )
 )
)