summaryrefslogtreecommitdiff
path: root/opcodes/cgen-asm.in
diff options
context:
space:
mode:
Diffstat (limited to 'opcodes/cgen-asm.in')
-rw-r--r--opcodes/cgen-asm.in11
1 files changed, 10 insertions, 1 deletions
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;
}