From 8c0392a98adf324b4bf5512b76ad3e248c6901d3 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Wed, 12 Dec 2001 07:32:47 +0000 Subject: * config/tc-d10v.c (get_operands): Mark OPERAND_PLUS after OPERAND_ATSIGN as O_absent. --- gas/config/tc-d10v.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gas/config') diff --git a/gas/config/tc-d10v.c b/gas/config/tc-d10v.c index 0dbf98a..31d7fca 100644 --- a/gas/config/tc-d10v.c +++ b/gas/config/tc-d10v.c @@ -459,8 +459,10 @@ get_operands (exp) exp[numops].X_add_number = OPERAND_ATSIGN; if (*p == '+') { - exp[++numops].X_add_number = OPERAND_PLUS; - ++p; + numops++; + exp[numops].X_op = O_absent; + exp[numops].X_add_number = OPERAND_PLUS; + p++; } post = postfix (p); } -- cgit v1.1