From 1de1483e385127bcfcfdeba19252777a68ff3a21 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 Oct 2003 22:46:22 +0000 Subject: [PATCH] New testcase. The linker should not consider it an error if two types disagree. It should grumble, then go ahead and do it. llvm-svn: 9356 --- .../test/Regression/Linker/2003-10-21-ConflictingTypesTolerance.ll | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 llvm/test/Regression/Linker/2003-10-21-ConflictingTypesTolerance.ll diff --git a/llvm/test/Regression/Linker/2003-10-21-ConflictingTypesTolerance.ll b/llvm/test/Regression/Linker/2003-10-21-ConflictingTypesTolerance.ll new file mode 100644 index 0000000..afc8f46 --- /dev/null +++ b/llvm/test/Regression/Linker/2003-10-21-ConflictingTypesTolerance.ll @@ -0,0 +1,7 @@ +; RUN: llvm-as < %s > %t.out1.bc +; RUN: echo "%S = type [8 x int] external global %S " | llvm-as > %t.out2.bc +; RUN: llvm-link %t.out[12].bc | llvm-dis | grep %S | grep '{' + +%S = type { int } + + -- 2.7.4