summaryrefslogtreecommitdiff
path: root/test/ELF/version-script-undef-version.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/version-script-undef-version.s')
-rw-r--r--test/ELF/version-script-undef-version.s12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ELF/version-script-undef-version.s b/test/ELF/version-script-undef-version.s
deleted file mode 100644
index 40dc816f5005..000000000000
--- a/test/ELF/version-script-undef-version.s
+++ /dev/null
@@ -1,12 +0,0 @@
-# REQUIRES: x86
-
-# Test that we don't error on undefined versions when static linking.
-# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
-# RUN: ld.lld %t.o -o %t
-# RUN: echo "DEFINED { global: *; };" > %t.map
-# RUN: ld.lld %t.o --version-script %t.map -o %t
-
-.global _start
-.global bar
-.symver _start, bar@@UNDEFINED
-_start: