This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED PATCH] gold: remove extraneous typename in relocate_relocs change


I only tested my recent changes with gcc 4.6, but 4.4 barfs on some
extraneous typename uses.

Committed as obvious.


Thanks,
Roland


gold/
2012-11-02  Roland McGrath  <mcgrathr@google.com>

	* i386.cc (Target_i386::relocate_relocs): Remove extraneous typename
	from last change.


diff --git a/gold/i386.cc b/gold/i386.cc
index fbf5670..c265115 100644
--- a/gold/i386.cc
+++ b/gold/i386.cc
@@ -414,8 +414,7 @@ class Target_i386 : public Sized_target<32, false>
 		  const unsigned char* prelocs,
 		  size_t reloc_count,
 		  Output_section* output_section,
-		  typename elfcpp::Elf_types<32>::Elf_Off
-                    offset_in_output_section,
+		  elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,
 		  const Relocatable_relocs*,
 		  unsigned char* view,
 		  elfcpp::Elf_types<32>::Elf_Addr view_address,
@@ -3618,7 +3617,7 @@ Target_i386::relocate_relocs(
     const unsigned char* prelocs,
     size_t reloc_count,
     Output_section* output_section,
-    typename elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,
+    elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,
     const Relocatable_relocs* rr,
     unsigned char* view,
     elfcpp::Elf_types<32>::Elf_Addr view_address,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]