When we originally wrote these tests we didn't have a stable and fleshed out assembly format. Now we do so we should prefer that over llvm ir for lld tests to avoid including more part of llvm than necessary in order to run the test. This change converts just 30 out of about 130 test files. More to come when I have some more time. Differential Revision: https://reviews.llvm.org/D80361
19 lines
488 B
ArmAsm
19 lines
488 B
ArmAsm
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
|
|
# RUN: not wasm-ld -o %t.wasm %t.o 2>&1 | FileCheck %s
|
|
|
|
# CHECK: error: {{.*}}.o: undefined symbol: foo(int)
|
|
|
|
# RUN: not wasm-ld --no-demangle \
|
|
# RUN: -o %t.wasm %t.o 2>&1 | FileCheck -check-prefix=CHECK-NODEMANGLE %s
|
|
|
|
# CHECK-NODEMANGLE: error: {{.*}}.o: undefined symbol: _Z3fooi
|
|
|
|
.globl _start
|
|
_start:
|
|
.functype _start () -> ()
|
|
i32.const 1
|
|
call _Z3fooi
|
|
end_function
|
|
|
|
.functype _Z3fooi (i32) -> ()
|