1 # REQUIRES: webassembly-registered-target
3 # RUN: %clang -### %s -c -o tmp.o -target wasm32-unknown-unknown -Wa,--no-type-check 2>&1 | FileCheck %s
4 # CHECK: "-cc1as" {{.*}} "-mno-type-check"
6 # Verify that without -Wa,--no-type-check the assembler will error out
7 # RUN: not %clang %s -c -o tmp.o -target wasm32-unknown-unknown 2>&1 | FileCheck --check-prefix=ERROR %s
8 # ERROR: error: popped i64, expected i32
11 .functype foo () -> (i32)