3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
4 # RUN: echo "FOO { local: extern \"C++\" { \"abb(int)\"; }; };" > %t.script
5 # RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
6 # RUN: llvm-readobj -V %t.so | FileCheck %s --check-prefix=ABB
7 # ABB: VersionSymbols [
13 # ABB-NEXT: Version: 1
14 # ABB-NEXT: Name: _Z3abci
18 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
19 # RUN: echo "FOO { local: extern \"C++\" { abb*; }; };" > %t.script
20 # RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
21 # RUN: llvm-readobj -V %t.so | FileCheck %s --check-prefix=ABB
23 # RUN: echo "FOO { local: extern \"C++\" { abc*; }; };" > %t.script
24 # RUN: ld.lld --version-script %t.script -shared %t.o -o %t.so
25 # RUN: llvm-readobj -V %t.so | FileCheck %s --check-prefix=ABC
26 # ABC: VersionSymbols [
28 # ABC-NEXT: Version: 0
32 # ABC-NEXT: Version: 1
33 # ABC-NEXT: Name: _Z3abbi
38 .type _Z3abbi,@function
43 .type _Z3abci,@function