* config/tc-hppa.c (pa_parse_fp_cmp_cond): Report an error

on a partial completer match.
This commit is contained in:
Jeff Law 1994-05-17 18:54:50 +00:00
parent 60b3e2812a
commit ee8b834600
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue May 17 12:50:46 1994 Jeff Law (law@snake.cs.utah.edu)
* config/tc-hppa.c (pa_parse_fp_cmp_cond): Report an error
on a partial completer match.
Mon May 16 12:03:49 1994 Jeff Law (law@snake.cs.utah.edu)
* config/tc-hppa.c: Change .hppa_unwind to .PARISC.unwind

View file

@ -3293,13 +3293,25 @@ pa_parse_fp_cmp_cond (s)
{
cond = fp_cond_map[i].cond;
*s += strlen (fp_cond_map[i].string);
/* If not a complete match, back up the input string and
report an error. */
if (**s != ' ' && **s != '\t')
{
*s -= strlen (fp_cond_map[i].string);
break;
}
while (**s == ' ' || **s == '\t')
*s = *s + 1;
return cond;
}
}
as_bad ("Invalid FP Compare Condition: %c", **s);
as_bad ("Invalid FP Compare Condition: %s", *s);
/* Advance over the bogus completer. */
while (**s != ',' && **s != ' ' && **s != '\t')
*s += 1;
return 0;
}