summaryrefslogtreecommitdiffstats
path: root/gold/testsuite/version_script.map
blob: 2a175235b704601c5b144d81cd34a21cb1a8cdf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
OpenPOWER on IntegriCloud