summaryrefslogtreecommitdiff
path: root/test/signext.wast
blob: 74bd488e73a1e6737d88413c987faacc5518cbe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(module
 (type $0 (func))
 (func $signext  (type $0)
  (local $0 i32)
  (local $1 i64)
  (drop (i32.extend8_s (local.get $0)))
  (drop (i32.extend16_s (local.get $0)))
  (drop (i64.extend8_s (local.get $1)))
  (drop (i64.extend16_s (local.get $1)))
  (drop (i64.extend32_s (local.get $1)))
 )
)