summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2000-12-28 19:53:54 +0000
committerFrank Ch. Eigler <fche@redhat.com>2000-12-28 19:53:54 +0000
commita9419d072a4cc31691e4da4d6f34e5978f57853c (patch)
treea920891728e442877679817394addb7bedd248b7
parentfc16726daf0e60e7b0f3fba4b8ed2ccfa823f81d (diff)
downloadgdb-a9419d072a4cc31691e4da4d6f34e5978f57853c.tar.gz
* error msg tweak
2000-12-28 Frank Ch. Eigler <fche@redhat.com> * cgen-asm.in (parse_insn_normal): Print better error message for instructions with missing operands.
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/cgen-asm.in11
2 files changed, 15 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index cd9239c28ca..4eda874c6f8 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-28 Frank Ch. Eigler <fche@redhat.com>
+
+ * cgen-asm.in (parse_insn_normal): Print better error message for
+ instructions with missing operands.
+
2000-12-21 Santeri Paavolainen <santtu@ssh.com>
* cgen-opc.c: Include alloca.h if HAVE_ALLOCA_H is defined.
diff --git a/opcodes/cgen-asm.in b/opcodes/cgen-asm.in
index ad6d1722fab..9915f065b7a 100644
--- a/opcodes/cgen-asm.in
+++ b/opcodes/cgen-asm.in
@@ -127,7 +127,7 @@ parse_insn_normal (cd, insn, strp, fields)
++ syn;
++ str;
}
- else
+ else if (*str)
{
/* Syntax char didn't match. Can't be this insn. */
static char msg [80];
@@ -136,6 +136,15 @@ parse_insn_normal (cd, insn, strp, fields)
*syn, *str);
return msg;
}
+ else
+ {
+ /* Ran out of input. */
+ static char msg [80];
+ /* xgettext:c-format */
+ sprintf (msg, _("syntax error (expected char `%c', found end of instruction)"),
+ *syn);
+ return msg;
+ }
continue;
}