binutils-gdb/gold/testsuite/version_script.map

29 lines
365 B
Plaintext
Raw Normal View History

V1 {
global:
extern "C++"
{
"bar()";
myns::*;
};
foo;
blaza*;
bar*;
# Would be a keyword in a linker script.
SECTIONS;
sizeof_headers;
# Crazy globbiness
glob*f[^A-Zo]stuff;
local:
*foo*;
};
V2 {
global:
extern "C++" {
otherns::stuff;
};
blaz*;
foo;
} V1;