* expr.c (operand): Correct checks for ++ and --.
This commit is contained in:
parent
c2215ad288
commit
f4c724fc32
2 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue