mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-10 01:23:17 +00:00
Internal error at gas/expr.c:1814
This is the assertion know (*input_line_pointer != ' '); after calling operand. The usual exit from operand calls SKIP_ALL_WHITESPACE. * expr.c (operand): Call SKIP_ALL_WHITESPACE after call to expr.
This commit is contained in:
@@ -996,7 +996,7 @@ operand (expressionS *expressionP, enum expr_mode mode)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
input_line_pointer++;
|
input_line_pointer++;
|
||||||
SKIP_WHITESPACE ();
|
SKIP_ALL_WHITESPACE ();
|
||||||
/* Here with input_line_pointer -> char after "(...)". */
|
/* Here with input_line_pointer -> char after "(...)". */
|
||||||
return segment;
|
return segment;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user