diff options
Diffstat (limited to 'test/Linker')
-rw-r--r-- | test/Linker/unnamed-addr-err-a.ll | 4 | ||||
-rw-r--r-- | test/Linker/unnamed-addr-err-b.ll | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/Linker/unnamed-addr-err-a.ll b/test/Linker/unnamed-addr-err-a.ll new file mode 100644 index 0000000..4872098 --- /dev/null +++ b/test/Linker/unnamed-addr-err-a.ll @@ -0,0 +1,4 @@ +; RUN: not llvm-link %s %p/unnamed-addr-err-b.ll -S -o - 2>&1 | FileCheck %s + +@foo = appending unnamed_addr global [1 x i32] [i32 42] +; CHECK: Appending variables with different unnamed_addr need to be linked diff --git a/test/Linker/unnamed-addr-err-b.ll b/test/Linker/unnamed-addr-err-b.ll new file mode 100644 index 0000000..5e5fed9 --- /dev/null +++ b/test/Linker/unnamed-addr-err-b.ll @@ -0,0 +1,4 @@ +; This file is for use with unnamed-addr-err-a.ll +; RUN: true + +@foo = appending global [1 x i32] [i32 42] |