diff options
author | Ian Lance Taylor <ian@airs.com> | 2012-04-26 00:07:21 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2012-04-26 00:07:21 +0000 |
commit | 2c54b4f42276b990ee7fd98a5f7c4629dac8f50b (patch) | |
tree | 415a2bf3b4c430e148e5920ec3102713d8ba0ab4 /gold/gc.h | |
parent | 109bbf34a11a1a65f42ece14556a29100679294f (diff) | |
download | gdb-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/gc.h')
-rw-r--r-- | gold/gc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ // gc.h -- garbage collection of unused sections -// Copyright 2009, 2010 Free Software Foundation, Inc. +// Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. // Written by Sriraman Tallam <tmsriram@google.com>. // This file is part of gold. @@ -40,7 +40,7 @@ template<int size, bool big_endian> class Sized_relobj_file; template<int sh_type, int size, bool big_endian> -class Reloc_types; +struct Reloc_types; class Output_section; class General_options; |