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]

[patch][gold] Fix build on 64 bits


This fixes warning when building on a 64 bits host.

2010-09-08  Rafael Espindola  <espindola@google.com>

	* script-sections.cc (Script_sections::add_memory_region): Convert
	field precision to int.
	* script.cc (script_set_section_region, script_set_section_region):
	Convert field precision to int.

Cheers,
-- 
Rafael Ãvila de EspÃndola
diff --git a/gold/script-sections.cc b/gold/script-sections.cc
index 8183bf2..1e576c4 100644
--- a/gold/script-sections.cc
+++ b/gold/script-sections.cc
@@ -2788,7 +2788,7 @@ Script_sections::add_memory_region(const char* name, size_t namelen,
     this->memory_regions_ = new Memory_regions();
   else if (this->find_memory_region(name, namelen))
     {
-      gold_error (_("region '%.*s' already defined"), namelen, name);
+      gold_error (_("region '%.*s' already defined"), int(namelen), name);
       // FIXME: Add a GOLD extension to allow multiple regions with the same
       // name.  This would amount to a single region covering disjoint blocks
       // of memory, which is useful for embedded devices.
diff --git a/gold/script.cc b/gold/script.cc
index 300b19b..8c4e163 100644
--- a/gold/script.cc
+++ b/gold/script.cc
@@ -3231,7 +3231,7 @@ script_set_section_region(void* closurev, const char* name, size_t namelen,
       gold_error(_("%s:%d:%d: MEMORY region '%.*s' referred to outside of "
 		   "SECTIONS clause"),
 		 closure->filename(), closure->lineno(), closure->charpos(),
-		 namelen, name);
+		 int(namelen), name);
       return;
     }
 
@@ -3241,7 +3241,7 @@ script_set_section_region(void* closurev, const char* name, size_t namelen,
     {
       gold_error(_("%s:%d:%d: MEMORY region '%.*s' not declared"),
 		 closure->filename(), closure->lineno(), closure->charpos(),
-		 namelen, name);
+		 int(namelen), name);
       return;
     }
 

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