old-cross-binutils/gold/testsuite/version_script.map
Ian Lance Taylor 106002249a From Craig Silverstein: Handle quoted strings differently in version
scripts, and handle extern "C++" in the middle of a block.
2008-01-18 23:35:09 +00:00

33 lines
504 B
Text

V1 {
global:
extern "C++"
{
"bar()";
"baz(int*)";
};
foo;
blaza*;
bar*;
# Make sure we parse "extern" when it's not first thing in the section.
extern "C++"
{
myns::*;
};
# 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;