1# Test that when a symbol (foo) is both weakly and strongly referenced 2# the strong undefined symbol always generates an error, whichever object 3# file is seen first. 4 5# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t1.o 6# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %S/Inputs/weak-undefined.s -o %t2.o 7# RUN: not wasm-ld %t1.o %t2.o -o /dev/null 2>&1 | FileCheck %s 8# RUN: not wasm-ld %t2.o %t1.o -o /dev/null 2>&1 | FileCheck %s 9 10# CHECK: undefined symbol: foo 11 12_start: 13 .globl _start 14 .functype _start () -> () 15 call foo 16 end_function 17 18.functype foo () -> () 19