summaryrefslogtreecommitdiff
path: root/test/decompile/precedence.txt
blob: 8980255a3e562c9de5ffc7a6e06ddb8f3b1e4b8c (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
38
39
40
41
42
43
44
45
46
47
  ;;; TOOL: run-wasm-decompile

(module
  (memory $m1 1)

  (func $precedence (param) (result)
    ;; some exp in order that will generate no parens
    i32.const 0
    i32.load offset=0
    i32.const 1
    i32.mul
    i32.const 2
    i32.add
    i32.const 3
    i32.shl
    i32.const 4
    i32.eq
    i32.const 5
    i32.and
    drop
    ;; some exp in reverse order that will generate parens.
    i32.const 6
    i32.const 5
    i32.and
    i32.const 4
    i32.eq
    i32.const 3
    i32.shl
    i32.const 2
    i32.add
    i32.const 1
    i32.mul
    i32.load offset=0
    drop
  )
  (export "precedence" (func $precedence))
)

(;; STDOUT ;;;
memory M_a(initial: 1, max: 0);

export function precedence() {
  0[0]:int * 1 + 2 << 3 == 4 & 5;
  (((((6 & 5) == 4) << 3) + 2) * 1)[0]:int;
}

;;; STDOUT ;;)