mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-18 11:20:03 +00:00
Unify and update link-messages.ll and redefinition.ll. NFC.
llvm-svn: 220968
This commit is contained in:
parent
24cb75d1b9
commit
6d66c4d69b
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…
x
Reference in New Issue
Block a user