Add value field to tests for output of -var-set-format.
[deliverable/binutils-gdb.git] / gold / testsuite / two_file_test.h
CommitLineData
3bd52c28
ILT
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
26extern bool t1();
27extern int t1_2();
28
29extern bool t2();
30extern int v2;
31
32extern bool t3();
33extern int v3;
34
35extern bool t4();
36extern char v4[];
37
38extern bool t5();
39extern char v5[];
40
41extern bool t6();
42
43extern bool t7();
44
45extern bool t8();
46
47extern bool t9();
48
49extern bool t10();
50extern int f10();
51
52extern bool t11();
53extern int f11a();
54extern int f11b(int (*)());
55
56extern bool t12();
57extern bool (*f12())();
58
59extern bool t13();
60inline void f13i() { }
61extern void (*f13())();
f958d5fc
ILT
62
63#define TEST_STRING_CONSTANT "test string constant"
64extern const char* f14();
28ef3179
ILT
65
66#define TEST_WIDE_STRING_CONSTANT L"test wide string constant"
67extern const wchar_t* f15();
This page took 0.041168 seconds and 4 git commands to generate.