1*1424dfb3Schristos // script_test_1b.cc -- linker script test 1 for gold  -*- C++ -*-
2*1424dfb3Schristos 
3*1424dfb3Schristos // Copyright (C) 2015-2020 Free Software Foundation, Inc.
4*1424dfb3Schristos 
5*1424dfb3Schristos // This file is part of gold.
6*1424dfb3Schristos 
7*1424dfb3Schristos // This program is free software; you can redistribute it and/or modify
8*1424dfb3Schristos // it under the terms of the GNU General Public License as published by
9*1424dfb3Schristos // the Free Software Foundation; either version 3 of the License, or
10*1424dfb3Schristos // (at your option) any later version.
11*1424dfb3Schristos 
12*1424dfb3Schristos // This program is distributed in the hope that it will be useful,
13*1424dfb3Schristos // but WITHOUT ANY WARRANTY; without even the implied warranty of
14*1424dfb3Schristos // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*1424dfb3Schristos // GNU General Public License for more details.
16*1424dfb3Schristos 
17*1424dfb3Schristos // You should have received a copy of the GNU General Public License
18*1424dfb3Schristos // along with this program; if not, write to the Free Software
19*1424dfb3Schristos // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20*1424dfb3Schristos // MA 02110-1301, USA.
21*1424dfb3Schristos 
22*1424dfb3Schristos // A test for a linker script which sets symbols to values.
23*1424dfb3Schristos 
24*1424dfb3Schristos #include <cassert>
25*1424dfb3Schristos 
26*1424dfb3Schristos #include "script_test_1.h"
27*1424dfb3Schristos 
28*1424dfb3Schristos void
check_int(intptr_t i,intptr_t j)29*1424dfb3Schristos check_int(intptr_t i, intptr_t j)
30*1424dfb3Schristos {
31*1424dfb3Schristos   assert (i == j);
32*1424dfb3Schristos }
33*1424dfb3Schristos 
34*1424dfb3Schristos void
check_ptr(int * i,int * j)35*1424dfb3Schristos check_ptr(int *i, int *j)
36*1424dfb3Schristos {
37*1424dfb3Schristos   assert (i == j);
38*1424dfb3Schristos }
39