diff options
Diffstat (limited to 'gas/config/tc-w65.c')
-rw-r--r-- | gas/config/tc-w65.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gas/config/tc-w65.c b/gas/config/tc-w65.c index d62e185..f291d89 100644 --- a/gas/config/tc-w65.c +++ b/gas/config/tc-w65.c @@ -1,6 +1,6 @@ /* tc-w65.c -- Assemble code for the W65816 - Copyright (C) 1995 Free Software Foundation. + Copyright (C) 1995, 1998 Free Software Foundation. This file is part of GAS, the GNU Assembler. @@ -133,7 +133,7 @@ s_longa (xmode) input_line_pointer += 3; } else - as_bad ("need on or off."); + as_bad (_("need on or off.")); demand_empty_rest_of_line (); } void @@ -254,7 +254,7 @@ parse_exp (s, bytes) input_line_pointer = s; w65_expression (&immediate, bytes); if (immediate.X_op == O_absent) - as_bad ("missing operand"); + as_bad (_("missing operand")); new = input_line_pointer; input_line_pointer = save; return new; @@ -318,7 +318,7 @@ get_operands (info, ptr) } else { - as_bad ("syntax error after <exp"); + as_bad (_("syntax error after <exp")); } } else @@ -361,7 +361,7 @@ get_operands (info, ptr) } else { - as_bad ("syntax error after <exp"); + as_bad (_("syntax error after <exp")); } } else @@ -756,7 +756,7 @@ md_assemble (str) if (opcode == NULL) { - as_bad ("unknown opcode"); + as_bad (_("unknown opcode")); return; } @@ -776,7 +776,7 @@ md_assemble (str) where[0] = 0x0; where[1] = 0x0; - as_bad ("invalid operands for opcode"); + as_bad (_("invalid operands for opcode")); return; } @@ -788,7 +788,7 @@ void DEFUN (tc_crawl_symbol_chain, (headers), object_headers * headers) { - printf ("call to tc_crawl_symbol_chain \n"); + printf (_("call to tc_crawl_symbol_chain \n")); } symbolS * @@ -802,7 +802,7 @@ void DEFUN (tc_headers_hook, (headers), object_headers * headers) { - printf ("call to tc_headers_hook \n"); + printf (_("call to tc_headers_hook \n")); } /* Various routines to kill one day */ @@ -853,7 +853,7 @@ md_atof (type, litP, sizeP) default: *sizeP = 0; - return "Bad call to MD_NTOF()"; + return _("Bad call to MD_NTOF()"); } t = atof_ieee (input_line_pointer, type, words); if (t) @@ -882,7 +882,7 @@ int md_short_jump_size; void tc_Nout_fix_to_chars () { - printf ("call to tc_Nout_fix_to_chars \n"); + printf (_("call to tc_Nout_fix_to_chars \n")); abort (); } @@ -894,7 +894,7 @@ md_create_short_jump (ptr, from_Nddr, to_Nddr, frag, to_symbol) fragS *frag; symbolS *to_symbol; { - as_fatal ("failed sanity check."); + as_fatal (_("failed sanity check.")); } void @@ -904,7 +904,7 @@ md_create_long_jump (ptr, from_Nddr, to_Nddr, frag, to_symbol) fragS *frag; symbolS *to_symbol; { - as_fatal ("failed sanity check."); + as_fatal (_("failed sanity check.")); } |