[ELF] - Test we are able to assign version to symbols that are not "_Z*"
authorGeorge Rimar <grimar@accesssoftek.com>
Thu, 5 Jul 2018 14:01:54 +0000 (14:01 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Thu, 5 Jul 2018 14:01:54 +0000 (14:01 +0000)
This is to test the following line of the code:
https://github.com/llvm-mirror/lld/blob/master/ELF/SymbolTable.cpp#L681

If symbol does not start from _Z prefix and we have extern "C++",
we do not call demangler and use its name as is.

llvm-svn: 336353

lld/test/ELF/version-script-extern2.s [new file with mode: 0644]

diff --git a/lld/test/ELF/version-script-extern2.s b/lld/test/ELF/version-script-extern2.s
new file mode 100644 (file)
index 0000000..834bbe1
--- /dev/null
@@ -0,0 +1,22 @@
+# REQUIRES: x86
+
+# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
+# RUN: echo "FOO { global: extern \"C++\" { \"bar\"; }; };" > %t.script
+# RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
+# RUN: llvm-readobj -V %t.so | FileCheck %s
+
+# CHECK:      Symbols [
+# CHECK-NEXT:   Symbol {
+# CHECK-NEXT:     Version: 0
+# CHECK-NEXT:     Name: @
+# CHECK-NEXT:   }
+# CHECK-NEXT:   Symbol {
+# CHECK-NEXT:     Version: 2
+# CHECK-NEXT:     Name: bar@@FOO
+# CHECK-NEXT:   }
+# CHECK-NEXT: ]
+
+.globl bar
+.type bar,@function
+bar:
+retq