i960.c (process_pragma): Call ungetc on the last character that was read by the while loop...

* i960/i960.c (process_pragma): Call ungetc on the last character
	that was read by the while loop, to make sure the parser sees it.

From-SVN: r13546
This commit is contained in:
Brendan Kehoe 1997-01-22 16:30:20 -05:00
parent 888302dbe4
commit 69ce75dc0d

View File

@ -124,6 +124,11 @@ process_pragma (finput, t)
}
*s = '\0';
/* We had to read a non-numerical character to get out of the
while loop---often a newline. So, we have to put it back to
make sure we continue to parse everything properly. */
ungetc (c, finput);
align = atoi (buf);
switch (align)
{