summaryrefslogtreecommitdiff
path: root/test/ELF/version-script-twice.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/version-script-twice.s')
-rw-r--r--test/ELF/version-script-twice.s18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/ELF/version-script-twice.s b/test/ELF/version-script-twice.s
deleted file mode 100644
index 1227dcd50f1d..000000000000
--- a/test/ELF/version-script-twice.s
+++ /dev/null
@@ -1,18 +0,0 @@
-# REQUIRES: x86
-
-# RUN: echo "FBSD_1.1 {}; FBSD_1.2 {};" > %t.ver
-# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
-# RUN: ld.lld -shared %t.o -o %t.so --version-script=%t.ver
-# RUN: llvm-readobj --dyn-symbols --elf-output-style=GNU %t.so | FileCheck %s
-
- .weak openat
-openat:
-
- .global openat@FBSD_1.1
-openat@FBSD_1.1 = openat
-
- .global openat@@FBSD_1.2
-openat@@FBSD_1.2 = openat
-
-# CHECK-DAG: openat@FBSD_1.1
-# CHECK-DAG: openat@@FBSD_1.2