From 74b56d1f69173cdd173c3031e9f52137829297a4 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 8 Nov 2005 16:37:56 +0000 Subject: [PATCH] * config/tc-sparc.c (isoctal): Fix thinko. --- gas/ChangeLog | 4 ++++ gas/config/tc-sparc.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 9fa5735..0e3e699 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Jean-Jacques Metayer + + * config/tc-sparc.c (isoctal): Fix thinko. + 2005-11-08 Arnold Metselaar * expr.c (operand ): Use DOLLAR_AMBIGU rather than diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 1f2b2f9..b14c377 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -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 { -- 2.7.4