This is the mail archive of the binutils-cvs@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]

[binutils-gdb] [ARC] Prepare strings for automatic translation.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e6ba1cbaf890ca2c7bd3383bdf5d5a8c367824a1

commit e6ba1cbaf890ca2c7bd3383bdf5d5a8c367824a1
Author: Claudiu Zissulescu <claziss@synopsys.com>
Date:   Thu Apr 7 14:01:17 2016 +0200

    [ARC] Prepare strings for automatic translation.
    
    gas/
    2016-04-07  Claudiu Zissulescu  <claziss@synopsys.com>
    
    	* config/tc-arc.c (arc_option): Prepare string for automatic
    	translation.
    	(declare_register): Likewise.

Diff:
---
 gas/ChangeLog       |  7 +++++++
 gas/config/tc-arc.c | 10 +++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index de996f6..9307b64 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,10 @@
+gas/
+2016-04-07  Claudiu Zissulescu  <claziss@synopsys.com>
+
+        * config/tc-arc.c (arc_option): Prepare string for automatic
+        translation.
+        (declare_register): Likewise.
+
 2016-04-06  James Greenhalgh  <james.greenhalgh@arm.com>
 
 	* doc/c-aarch64.texi (Architecture Extensions): Add entry for LSE.
diff --git a/gas/config/tc-arc.c b/gas/config/tc-arc.c
index 154e838..ea34645 100644
--- a/gas/config/tc-arc.c
+++ b/gas/config/tc-arc.c
@@ -732,14 +732,14 @@ arc_option (int ignore ATTRIBUTE_UNUSED)
 	  md_parse_option (OPTION_MCPU, "archs");
 	}
       else
-	as_fatal ("could not find the architecture");
+	as_fatal (_("could not find the architecture"));
 
       if (!bfd_set_arch_mach (stdoutput, bfd_arch_arc, mach))
-	as_fatal ("could not set architecture and machine");
+	as_fatal (_("could not set architecture and machine"));
     }
   else
     if (arc_mach_type != mach)
-      as_warn ("Command-line value overrides \".cpu\" directive");
+      as_warn (_("Command-line value overrides \".cpu\" directive"));
 
   restore_line_pointer (c);
   demand_empty_rest_of_line ();
@@ -747,7 +747,7 @@ arc_option (int ignore ATTRIBUTE_UNUSED)
 
  bad_cpu:
   restore_line_pointer (c);
-  as_bad ("invalid identifier for \".cpu\"");
+  as_bad (_("invalid identifier for \".cpu\""));
   ignore_rest_of_line ();
 }
 
@@ -2111,7 +2111,7 @@ declare_register (const char *name, int number)
 
   err = hash_insert (arc_reg_hash, S_GET_NAME (regS), (void *) regS);
   if (err)
-    as_fatal ("Inserting \"%s\" into register table failed: %s",
+    as_fatal (_("Inserting \"%s\" into register table failed: %s"),
 	      name, err);
 }


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