summaryrefslogtreecommitdiff
path: root/test/parse/expr/unary-extend.txt
blob: 0f483fcf607ea43cc1cce445313bd52dfaa800dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;; TOOL: wat2wasm
(module
  (func
    i32.const 0
    i32.extend8_s
    drop

    i32.const 0
    i32.extend16_s
    drop

    i64.const 0
    i64.extend8_s
    drop

    i64.const 0
    i64.extend16_s
    drop

    i64.const 0
    i64.extend32_s
    drop))