diff options
author | Nick Clifton <nickc@redhat.com> | 2005-11-08 16:37:56 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-11-08 16:37:56 +0000 |
commit | 74b56d1f69173cdd173c3031e9f52137829297a4 (patch) | |
tree | 1a2e5a6d062d1843328cade2b5176fef0a5386c9 /gas/config | |
parent | e627d9a0e2650df2e8b517c79ff0fc4a6a9aab20 (diff) | |
download | gdb-74b56d1f69173cdd173c3031e9f52137829297a4.zip gdb-74b56d1f69173cdd173c3031e9f52137829297a4.tar.gz gdb-74b56d1f69173cdd173c3031e9f52137829297a4.tar.bz2 |
* config/tc-sparc.c (isoctal): Fix thinko.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-sparc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |