aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog6
-rw-r--r--gold/arm.cc2
-rw-r--r--gold/powerpc.cc2
-rw-r--r--gold/sparc.cc2
4 files changed, 9 insertions, 3 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index b08fcdf..a9612ba 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,5 +1,11 @@
2010-08-02 Ian Lance Taylor <iant@google.com>
+ * arm.cc (Target_arm::gc_process_relocs): Use typename.
+ * powerpc.cc (Target_powerpc::gc_process_relocs): Likewise.
+ * sparc.cc (Target_sparc::gc_process_relocs): Likewise.
+
+2010-08-02 Ian Lance Taylor <iant@google.com>
+
PR 11855
* script.cc (Script_options::Script_options): Initialize
symbol_definitions_ and symbol_references_.
diff --git a/gold/arm.cc b/gold/arm.cc
index a0bcecd..780b7df 100644
--- a/gold/arm.cc
+++ b/gold/arm.cc
@@ -8214,7 +8214,7 @@ Target_arm<big_endian>::gc_process_relocs(Symbol_table* symtab,
typedef typename Target_arm<big_endian>::Scan Scan;
gold::gc_process_relocs<32, big_endian, Arm, elfcpp::SHT_REL, Scan,
- Target_arm::Relocatable_size_for_reloc>(
+ typename Target_arm::Relocatable_size_for_reloc>(
symtab,
layout,
this,
diff --git a/gold/powerpc.cc b/gold/powerpc.cc
index feb950e..0f0ced8 100644
--- a/gold/powerpc.cc
+++ b/gold/powerpc.cc
@@ -1494,7 +1494,7 @@ Target_powerpc<size, big_endian>::gc_process_relocs(
typedef typename Target_powerpc<size, big_endian>::Scan Scan;
gold::gc_process_relocs<size, big_endian, Powerpc, elfcpp::SHT_RELA, Scan,
- Target_powerpc::Relocatable_size_for_reloc>(
+ typename Target_powerpc::Relocatable_size_for_reloc>(
symtab,
layout,
this,
diff --git a/gold/sparc.cc b/gold/sparc.cc
index c05365d..cbaa47e 100644
--- a/gold/sparc.cc
+++ b/gold/sparc.cc
@@ -2331,7 +2331,7 @@ Target_sparc<size, big_endian>::gc_process_relocs(
typedef typename Target_sparc<size, big_endian>::Scan Scan;
gold::gc_process_relocs<size, big_endian, Sparc, elfcpp::SHT_RELA, Scan,
- Target_sparc::Relocatable_size_for_reloc>(
+ typename Target_sparc::Relocatable_size_for_reloc>(
symtab,
layout,
this,