diff options
Diffstat (limited to 'test/LTO')
-rw-r--r-- | test/LTO/cfi_endproc.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/LTO/cfi_endproc.ll b/test/LTO/cfi_endproc.ll index 4ea53e7..acfaf5a 100644 --- a/test/LTO/cfi_endproc.ll +++ b/test/LTO/cfi_endproc.ll @@ -27,3 +27,11 @@ define i32 @main(i32 %argc, i8** %argv) { call void @PR14512() ret i32 0 } + +; RUN: llvm-lto -o %t -dso-symbol=zed1 -dso-symbol=zed2 %t1 -disable-opt +; RUN: llvm-nm %t | FileCheck %s -check-prefix=ZED1_AND_ZED2 +; ZED1_AND_ZED2: V zed1 +@zed1 = linkonce_odr global i32 42 + +; ZED1_AND_ZED2: d zed2 +@zed2 = linkonce_odr unnamed_addr global i32 42 |