diff options
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index ea44399..2e26177 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -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, |