mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 11:49:50 +00:00
Unify and update link-messages.ll and redefinition.ll. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220968 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7d26b99189
commit
07c3753e14
1
test/Linker/Inputs/redefinition.ll
Normal file
1
test/Linker/Inputs/redefinition.ll
Normal file
@ -0,0 +1 @@
|
||||
define void @foo(i32 %x) { ret void }
|
@ -1,10 +0,0 @@
|
||||
; Test that linking two files with the same definition causes an error and
|
||||
; that error is printed out.
|
||||
; RUN: llvm-as %s -o %t.one.bc
|
||||
; RUN: llvm-as %s -o %t.two.bc
|
||||
; RUN: not llvm-link %t.one.bc %t.two.bc -o %t.bc 2>&1 | FileCheck %s
|
||||
|
||||
; CHECK: symbol multiply defined
|
||||
define i32 @bar() {
|
||||
ret i32 0
|
||||
}
|
@ -1,9 +1,6 @@
|
||||
; Test linking two functions with different prototypes and two globals
|
||||
; Test linking two functions with different prototypes and two globals
|
||||
; in different modules.
|
||||
; RUN: llvm-as %s -o %t.foo1.bc
|
||||
; RUN: llvm-as %s -o %t.foo2.bc
|
||||
; RUN: echo "define void @foo(i32 %x) { ret void }" | llvm-as -o %t.foo3.bc
|
||||
; RUN: not llvm-link %t.foo1.bc %t.foo2.bc -o %t.bc 2>&1 | FileCheck %s
|
||||
; RUN: not llvm-link %t.foo1.bc %t.foo3.bc -o %t.bc 2>&1 | FileCheck %s
|
||||
; CHECK: symbol multiply defined
|
||||
; RUN: not llvm-link %s %s -o %t.bc 2>&1 | FileCheck %s
|
||||
; RUN: not llvm-link %s %S/Inputs/redefinition.ll -o %t.bc 2>&1 | FileCheck %s
|
||||
; CHECK: ERROR: Linking globals named 'foo': symbol multiply defined!
|
||||
define void @foo() { ret void }
|
||||
|
Loading…
Reference in New Issue
Block a user