localize string returned from visium's md_atof ()
authorTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Sat, 19 Mar 2016 11:38:46 +0000 (07:38 -0400)
committerTrevor Saunders <tbsaunde+binutils@tbsaunde.org>
Thu, 24 Mar 2016 11:58:43 +0000 (07:58 -0400)
I'm not sure the string it returns is particularly useful, or better than the
string returned by other atof implementations on failure, but given the others
return a localized string it seems like this one should too.

gas/ChangeLog:

2016-03-24  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

* config/tc-visium.c (md_atof): Localize the string returned on
failure.

gas/ChangeLog
gas/config/tc-visium.c

index 78408b63e689613a49f79fb4036781d3d99c116b..29ec3ecda9436e0ea9b9afb7a8aa54fb41382559 100644 (file)
@@ -1,3 +1,8 @@
+2016-03-24  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
+
+       * config/tc-visium.c (md_atof): Localize the string returned on
+       failure.
+
 2016-03-22  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
 
        * config/tc-h8300.c (h8300_elf_section): Add const qualifiers.
index 3758a35061a3e9e8867c7044ec9a839404301f46..f4e7c1462db122ea2d6310638b4b8b47af0d9062 100644 (file)
@@ -861,7 +861,7 @@ md_atof (int type, char *litP, int *sizeP)
 
     default:
       *sizeP = 0;
-      return "Bad call to MD_ATOF()";
+      return _("Bad call to MD_ATOF()");
     }
 
   t = atof_ieee (input_line_pointer, type, words);