Stringpool stats. Also make Symbol_table support functions inline.
[deliverable/binutils-gdb.git] / gold / testsuite / two_file_test.h
1 // two_file_test.h -- a two file test case for gold, header file -*- C++ -*-
2
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@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 // This tests references between files. This is the shared header
24 // file. See two_file_test_1.cc for details.
25
26 extern bool t1();
27 extern int t1_2();
28
29 extern bool t2();
30 extern int v2;
31
32 extern bool t3();
33 extern int v3;
34
35 extern bool t4();
36 extern char v4[];
37
38 extern bool t5();
39 extern char v5[];
40
41 extern bool t6();
42
43 extern bool t7();
44
45 extern bool t8();
46
47 extern bool t9();
48
49 extern bool t10();
50 extern int f10();
51
52 extern bool t11();
53 extern int f11a();
54 extern int f11b(int (*)());
55
56 extern bool t12();
57 extern bool (*f12())();
58
59 extern bool t13();
60 inline void f13i() { }
61 extern void (*f13())();
62
63 #define TEST_STRING_CONSTANT "test string constant"
64 extern const char* f14();
65
66 #define TEST_WIDE_STRING_CONSTANT L"test wide string constant"
67 extern const wchar_t* f15();
This page took 0.030761 seconds and 4 git commands to generate.