PR 10437
[deliverable/binutils-gdb.git] / gas / config / tc-arm.c
index ea4439939e54e4b6ecc89d119334fa53796d9246..2e26177653e4ab1544550c216a648ded60528197 100644 (file)
@@ -1875,8 +1875,8 @@ parse_neon_el_struct_list (char **str, unsigned *pbase,
   int leading_brace = 0;
   enum arm_reg_type rtype = REG_TYPE_NDQ;
   int addregs = 1;
-  const char *const incr_error = "register stride must be 1 or 2";
-  const char *const type_error = "mismatched element/structure types in list";
+  const char *const incr_error = _("register stride must be 1 or 2");
+  const char *const type_error = _("mismatched element/structure types in list");
   struct neon_typed_alias firsttype;
 
   if (skip_past_char (&ptr, '{') == SUCCESS)
@@ -18393,7 +18393,7 @@ arm_frag_align_code (int n, int max)
       sprintf (err_msg, 
         _("alignments greater than %d bytes not supported in .text sections."),
         MAX_MEM_FOR_RS_ALIGN_CODE + 1);
-      as_fatal (err_msg);
+      as_fatal ("%s", err_msg);
     }
 
   p = frag_var (rs_align_code,
This page took 0.031462 seconds and 4 git commands to generate.