PR binutils/12467
[binutils.git] / gold / testsuite / debug_msg.cc
blob1d77bc91c296713cde525fe243088a303d81061d
1 // debug_msg.cc -- a test case for printing debug info for missing symbols.
3 // Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
23 // This file is constructed to have undefined references. In
24 // debug_msg.sh, we will try to link this file, and analyze the
25 // error messages that are produced.
27 extern int undef_int;
28 extern float undef_float;
29 extern void undef_fn1();
30 extern void undef_fn2();
32 int* badref1 = &undef_int;
33 static float* badref2 = &undef_float;
34 void (*fn_array[])() =
36 undef_fn1,
37 undef_fn2
40 template<class Foo>
41 int testfn(Foo x)
43 undef_fn1();
44 undef_fn2();
45 return undef_int;
48 class Base
50 virtual void virtfn() { undef_fn1(); }
53 class Derived : public Base
55 virtual void virtfn() { undef_fn2(); }
58 // This tests One Definition Rule (ODR) violations.
59 void SortAscending(int array[], int size); // in odr_violation1.cc
60 void SortDescending(int array[], int size); // in odr_violation2.cc
62 extern "C" int OverriddenCFunction(int i); // in odr_violation*.cc
64 inline int SometimesInlineFunction(int i) { // strong in odr_violation2.cc.
65 return i;
69 int main()
71 testfn(5);
72 testfn(4.0);
74 Base b;
75 Derived d;
77 int kInput1[] = {1, 6, 9, 7, 3, 4, 2, 10, 5, 8};
78 int kSize1 = sizeof(kInput1) / sizeof(int);
79 SortAscending(kInput1, kSize1);
81 int kInput2[] = {1, 6, 9, 7, 3, 4, 2, 10, 5, 8};
82 int kSize2 = sizeof(kInput2) / sizeof(int);
83 SortDescending(kInput2, kSize2);
85 OverriddenCFunction(3);
86 SometimesInlineFunction(3);
88 return 0;