summaryrefslogtreecommitdiff
path: root/test/lit/exec/intrinsics.wast
blob: c8ae2864338616271253abc352c82f206ea76b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; NOTE: Assertions have been generated by update_lit_checks.py --output=fuzz-exec and should not be edited.

;; RUN: wasm-opt %s -all --fuzz-exec-before -q -o /dev/null 2>&1 | filecheck %s

(module
  (import "binaryen-intrinsics" "call.without.effects" (func $cwe (param i32 funcref) (result i32)))

  ;; CHECK:      [fuzz-exec] calling get-ref
  ;; CHECK-NEXT: [fuzz-exec] note result: get-ref => 42
  (func $get-ref (export "get-ref") (result i32)
    (call $cwe
      (i32.const 41)
      (ref.func $add-one)
    )
  )

  (func $add-one (param $x i32) (result i32)
    (i32.add
      (local.get $x)
      (i32.const 1)
    )
  )
)