diff options
author | Alan Modra <amodra@gmail.com> | 2004-04-16 01:55:27 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-04-16 01:55:27 +0000 |
commit | f4c724fc32c913252cfda9ce052ad84afe3258b6 (patch) | |
tree | 4a624305caf68721d7948427b03e1f47d478904d /gas | |
parent | c2215ad2888c9fe23d0667c3e18163bcbf85cdf3 (diff) | |
download | binutils-gdb-f4c724fc32c913252cfda9ce052ad84afe3258b6.tar.gz |
* expr.c (operand): Correct checks for ++ and --.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/expr.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 6f6b7e42e92..d0a6967c0b7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2004-04-16 Alan Modra <amodra@bigpond.net.au> + + * expr.c (operand): Correct checks for ++ and --. + 2004-04-14 H.J. Lu <hongjiu.lu@intel.com> * config/tc-generic.c: Add some comments. diff --git a/gas/expr.c b/gas/expr.c index b7cc1b8cacb..19e3f1c0387 100644 --- a/gas/expr.c +++ b/gas/expr.c @@ -1022,7 +1022,7 @@ operand (expressionS *expressionP) case '+': /* Do not accept ++e as +(+e) */ - if (input_line_pointer[1] == '+') + if (*input_line_pointer == '+') goto target_op; (void) operand (expressionP); break; @@ -1042,7 +1042,7 @@ operand (expressionS *expressionP) case '-': { /* Do not accept --e as -(-e) */ - if (c == '-' && input_line_pointer[1] == '-') + if (c == '-' && *input_line_pointer == '-') goto target_op; operand (expressionP); |