From Andrew Chatham and Craig Silverstein: Add support for version
[external/binutils.git] / gold / testsuite / ver_matching_def.cc
1 // ver_matching_def.cc - test matching rules in version_script.map
2
3 // Copyright 2007 Free Software Foundation, Inc.
4 // Written by Cary Coutant <ccoutant@google.com>.
5
6 // This file is part of gold.
7
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
12
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
22
23 extern "C" {
24 void foo() {} // V1
25 void foo1() {} // local
26 };
27
28 void bar() {} // V1
29 void bar1() {} // global
30
31 extern "C" {
32 void bar2() {}  // V1
33 };
34
35 namespace myns {
36 void blah() {} // V1
37 void bip() {} // V1
38
39 class Stuff {
40  public:
41   Stuff() {} // V1
42 };
43 }
44
45 class Biz {
46  public:
47   Biz() {} // global
48 };
49
50 namespace otherns {
51 Biz biz; // global
52 myns::Stuff stuff;  // V2
53 };
54
55 extern "C" {
56 void blaza() {}  // V1
57 void blaza1() {}  // V1
58
59 void original_blaza2() {} // V2
60 __asm__(".symver original_blaza2,blaza2@@V2");  // overrides script
61
62 void bla() {} // global
63 void blaz() {} // V2
64 void blazb() {} // V2
65
66 int globaoeufxstuff = 0;  // V1
67 int globaoeufostuff = 0; // global
68 float sizeof_headers = 50.0;  // V1
69 };