* elf32-ppc.c (ppc_elf_check_relocs): Set pointer_equality_needed
[binutils.git] / gold / testsuite / version_script.map
blobe9106102d46047eab237b738d3fc4c53e9801f27
1 V1 {
2    global:
3         extern "C++"
4         {
5            "bar()";
6            "baz(int*)";
7         };
8         foo;
9         blaza*;
10         bar*;
11         # Make sure we parse "extern" when it's not first thing in the section.
12         extern "C++"
13         {
14            myns::*;
15         };
16         # Would be a keyword in a linker script.
17         SECTIONS;
18         sizeof_headers;
19         # Crazy globbiness
20         glob*f[^A-Zo]stuff;
22    local:
23         *foo*;
26 V2 {
27    global:
28         extern "C++" {
29            otherns::stuff;
30         };
31         blaz*;
32         foo;
33    local:
34         _[^A-Z]*;
35 } V1;