aboutsummaryrefslogtreecommitdiff
path: root/gold/target.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2012-04-26 00:07:21 +0000
committerIan Lance Taylor <ian@airs.com>2012-04-26 00:07:21 +0000
commit2c54b4f42276b990ee7fd98a5f7c4629dac8f50b (patch)
tree415a2bf3b4c430e148e5920ec3102713d8ba0ab4 /gold/target.h
parent109bbf34a11a1a65f42ece14556a29100679294f (diff)
downloadgdb-2c54b4f42276b990ee7fd98a5f7c4629dac8f50b.zip
gdb-2c54b4f42276b990ee7fd98a5f7c4629dac8f50b.tar.gz
gdb-2c54b4f42276b990ee7fd98a5f7c4629dac8f50b.tar.bz2
* arm.cc (Target_arm::do_is_defined_by_abi): Make sym a const
pointer. (Stub_addend_reader::operator()): Declare Arm_relocate_functions as a class, not a struct. (Target_arm::scan_span_for_cortex_a8_erratum): Likewise. (Target_arm::apply_cortex_a8_workaround): Likewise. * gc.h: Declare Reloc_types as a struct, not a class. * object.h: Declare Symbols_data as a struct. * reloc.h: Declare Read_relocs_data as a struct. * target.h: Declare Relocate_info as a struct.
Diffstat (limited to 'gold/target.h')
-rw-r--r--gold/target.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/target.h b/gold/target.h
index ff97aba..b174058 100644
--- a/gold/target.h
+++ b/gold/target.h
@@ -1,6 +1,7 @@
// target.h -- target support for gold -*- C++ -*-
-// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+// Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012
+// Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>.
// This file is part of gold.
@@ -49,7 +50,7 @@ template<int size, bool big_endian>
class Sized_relobj_file;
class Relocatable_relocs;
template<int size, bool big_endian>
-class Relocate_info;
+struct Relocate_info;
class Reloc_symbol_changes;
class Symbol;
template<int size>