summaryrefslogtreecommitdiff
path: root/test/wasm2js/sign_ext.wast
blob: 7dcb03911a3186d8428aecabe130d64788bb7870 (plain)
1
2
3
4
5
6
7
8
(module
  (func "test8" (param $x i32) (result i32)
    (i32.extend8_s (local.get $x))
  )
  (func "test16" (param $x i32) (result i32)
    (i32.extend16_s (local.get $x))
  )
)