* config/tc-sparc.c (isoctal): Fix thinko.
authorNick Clifton <nickc@redhat.com>
Tue, 8 Nov 2005 16:37:56 +0000 (16:37 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 8 Nov 2005 16:37:56 +0000 (16:37 +0000)
gas/ChangeLog
gas/config/tc-sparc.c

index 9fa5735c974e32dbe180b074a56973a77596381c..0e3e69928b92ac119936ad6ef71027a45560feab 100644 (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
index 1f2b2f998fcc7142656567d5b5024508426b79ea..b14c377b5646843d6bca27ff65500ea21ad19586 100644 (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
   {