mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 08:38:10 +08:00
* config/tc-i386.c (i386_intel_operand): Always call i386_index_check
for memory operands. Pass the full operand_string to i386_index_check.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-08-04 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* config/tc-i386.c (i386_intel_operand): Always call i386_index_check
|
||||||
|
for memory operands. Pass the full operand_string to i386_index_check.
|
||||||
|
|
||||||
2003-08-01 Jason Eckhardt <jle@rice.edu>
|
2003-08-01 Jason Eckhardt <jle@rice.edu>
|
||||||
|
|
||||||
* config/tc-i860.c: Remove SYNTAX_SVR4 macro and occurrences.
|
* config/tc-i860.c: Remove SYNTAX_SVR4 macro and occurrences.
|
||||||
|
@ -5621,8 +5621,9 @@ i386_intel_operand (operand_string, got_a_float)
|
|||||||
|
|
||||||
/* Add the displacement expression. */
|
/* Add the displacement expression. */
|
||||||
if (*s != '\0')
|
if (*s != '\0')
|
||||||
ret = i386_displacement (s, s + strlen (s))
|
ret = i386_displacement (s, s + strlen (s));
|
||||||
&& i386_index_check (s);
|
if (ret)
|
||||||
|
ret = i386_index_check (operand_string);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user