diff options
Diffstat (limited to 'lld/test/ELF/lto/version-script.ll')
-rw-r--r-- | lld/test/ELF/lto/version-script.ll | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/lld/test/ELF/lto/version-script.ll b/lld/test/ELF/lto/version-script.ll deleted file mode 100644 index 11a7f073ab5..00000000000 --- a/lld/test/ELF/lto/version-script.ll +++ /dev/null @@ -1,50 +0,0 @@ -; REQUIRES: x86 -; RUN: llvm-as %s -o %t.o -; RUN: echo "VERSION_1.0{ global: foo; local: *; }; VERSION_2.0{ global: bar; local: *; };" > %t.script -; RUN: ld.lld -m elf_x86_64 %t.o -o %t2 -shared --version-script %t.script -save-temps -; RUN: llvm-dis < %t2.lto.bc | FileCheck %s -; RUN: llvm-readobj -V -dyn-symbols %t2 | FileCheck --check-prefix=DSO %s - -target triple = "x86_64-unknown-linux-gnu" -target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" - -define void @foo() { - ret void -} - -define void @bar() { - ret void -} - -; CHECK: define void @foo() -; CHECK: define void @bar() - -; DSO: DynamicSymbols [ -; DSO: Symbol { -; DSO: Name: @ (0) -; DSO: Value: 0x0 -; DSO: Size: 0 -; DSO: Binding: Local -; DSO: Type: None -; DSO: Other: 0 -; DSO: Section: Undefined -; DSO: } -; DSO: Symbol { -; DSO: Name: foo@@VERSION_1.0 -; DSO: Value: 0x1000 -; DSO: Size: 1 -; DSO: Binding: Global -; DSO: Type: Function -; DSO: Other: 0 -; DSO: Section: .text -; DSO: } -; DSO: Symbol { -; DSO: Name: bar@@VERSION_2.0 -; DSO: Value: 0x1010 -; DSO: Size: 1 -; DSO: Binding: Global -; DSO: Type: Function -; DSO: Other: 0 -; DSO: Section: .text -; DSO: } -; DSO: ] |