You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
607 B
19 lines
607 B
# Test that when a symbol (foo) is both weakly and strongly referenced
|
|
# the strong undefined symbol always generates an error, whichever object
|
|
# file is seen first.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t1.o
|
|
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %S/Inputs/weak-undefined.s -o %t2.o
|
|
# RUN: not wasm-ld %t1.o %t2.o -o /dev/null 2>&1 | FileCheck %s
|
|
# RUN: not wasm-ld %t2.o %t1.o -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
# CHECK: undefined symbol: foo
|
|
|
|
_start:
|
|
.globl _start
|
|
.functype _start () -> ()
|
|
call foo
|
|
end_function
|
|
|
|
.functype foo () -> ()
|