File: intrinsics.wast

package info (click to toggle)
binaryen 120-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 41,284 kB
  • sloc: cpp: 189,449; javascript: 62,189; ansic: 14,087; python: 5,379; pascal: 441; sh: 77; makefile: 30; asm: 27
file content (22 lines) | stat: -rw-r--r-- 558 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;; Test for a validation error on bad usage of call.without.effects

;; RUN: not wasm-opt -all %s 2>&1 | filecheck %s

;; CHECK: param number must match

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

  (func $get-ref (export "get-ref") (result i32)
    ;; This call-without-effects is done to a $func, but $func has the wrong
    ;; signature - it lacks the i32 parameter.
    (call $cwe
      (i32.const 41)
      (ref.func $func)
    )
  )

  (func $func (result i32)
    (i32.const 1)
  )
)