aboutsummaryrefslogtreecommitdiff
path: root/opcodes/mcore-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-05-30 18:35:35 +0000
committerNick Clifton <nickc@redhat.com>2000-05-30 18:35:35 +0000
commitc1485d85e0bae60bf321baa007dd44bcc56b534b (patch)
tree05fb4d47e213be2861b124b1278ec24911e36fef /opcodes/mcore-dis.c
parentc1a72ffdd6aecb2880a7ea3a00234fd48142074c (diff)
downloadgdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.zip
gdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.tar.gz
gdb-c1485d85e0bae60bf321baa007dd44bcc56b534b.tar.bz2
Replace defines with those from intl/libgettext.h to quieten gcc warnings.
Diffstat (limited to 'opcodes/mcore-dis.c')
-rw-r--r--opcodes/mcore-dis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/mcore-dis.c b/opcodes/mcore-dis.c
index 7ebfd37..6df124f 100644
--- a/opcodes/mcore-dis.c
+++ b/opcodes/mcore-dis.c
@@ -169,7 +169,7 @@ print_insn_mcore (memaddr, info)
if (strcmp (op->name, "bsr") == 0)
{
- /* for bsr, we'll try to get a symbol for the target */
+ /* For bsr, we'll try to get a symbol for the target. */
val = memaddr + 2 + (val << 1);
if (info->print_address_func && val != 0)
@@ -268,12 +268,12 @@ print_insn_mcore (memaddr, info)
break;
default:
- /* if the disassembler lags the instruction set */
+ /* If the disassembler lags the instruction set. */
fprintf (stream, "\tundecoded operands, inst is 0x%04x", inst);
break;
}
}
- /* Say how many bytes we consumed? */
+ /* Say how many bytes we consumed. */
return 2;
}