* config/tc-sparc.c (isoctal): Fix thinko.

This commit is contained in:
Nick Clifton 2005-11-08 16:37:56 +00:00
parent e627d9a0e2
commit 74b56d1f69
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-11-08 Jean-Jacques Metayer <jean-jacques.metayer@thomson.net>
* config/tc-sparc.c (isoctal): Fix thinko.
2005-11-08 Arnold Metselaar <arnold.metselaar@planet.nl>
* expr.c (operand <case '$'>): Use DOLLAR_AMBIGU rather than

View File

@ -204,7 +204,7 @@ const char FLT_CHARS[] = "rRsSfFdDxXpP";
changed in read.c. Ideally it shouldn't have to know about it at all,
but nothing is ideal around here. */
#define isoctal(c) ((unsigned) ((c) - '0') < '8')
#define isoctal(c) ((unsigned) ((c) - '0') < 8)
struct sparc_it
{