[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / notypecheck.s
blobf6e78d6791182d44b062d44fbbb36fae80b6d69d
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
10 foo:
11 .functype foo () -> (i32)
12 i64.const 42
13 end_function