diff options
author | Nick Clifton <nickc@redhat.com> | 2007-09-26 16:07:18 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-09-26 16:07:18 +0000 |
commit | 168411b181bae47b6331dcee438ac6b3233016f9 (patch) | |
tree | 944fd4dc81374faf9b01a6ac8dda4ac16b2ac8cb /opcodes/ia64-gen.c | |
parent | 3e9313abcf349e884f87c3f74104d50b06c37f5f (diff) | |
download | gdb-168411b181bae47b6331dcee438ac6b3233016f9.zip gdb-168411b181bae47b6331dcee438ac6b3233016f9.tar.gz gdb-168411b181bae47b6331dcee438ac6b3233016f9.tar.bz2 |
* mt-asm.c (parse_imm16): Reword error message in order to allow it to be translated properly.
* ia64-gen.c (print_dependency_table): Likewise.
* mips-dis.c (print_insn_args): Likewise.
Diffstat (limited to 'opcodes/ia64-gen.c')
-rw-r--r-- | opcodes/ia64-gen.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/opcodes/ia64-gen.c b/opcodes/ia64-gen.c index 7dc85b5..5c897a9 100644 --- a/opcodes/ia64-gen.c +++ b/opcodes/ia64-gen.c @@ -1550,9 +1550,14 @@ print_dependency_table () static const char *mode_str[] = { "RAW", "WAW", "WAR" }; if (rdeps[i]->total_chks == 0) - warn (_("Warning: rsrc %s (%s) has no chks%s\n"), - rdeps[i]->name, mode_str[rdeps[i]->mode], - rdeps[i]->total_regs ? "" : " or regs"); + { + if (rdeps[i]->total_regs) + warn (_("Warning: rsrc %s (%s) has no chks%\n"), + rdeps[i]->name, mode_str[rdeps[i]->mode]); + else + warn (_("Warning: rsrc %s (%s) has no chks or regs\n"), + rdeps[i]->name, mode_str[rdeps[i]->mode]); + } else if (rdeps[i]->total_regs == 0) warn (_("rsrc %s (%s) has no regs\n"), rdeps[i]->name, mode_str[rdeps[i]->mode]); |