mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
2008-01-08 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (i386_operand): Renamed to ... (i386_att_operand): This. (parse_operands): Updated.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2008-01-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* config/tc-i386.c (i386_operand): Renamed to ...
|
||||||
|
(i386_att_operand): This.
|
||||||
|
(parse_operands): Updated.
|
||||||
|
|
||||||
2008-01-05 H.J. Lu <hongjiu.lu@intel.com>
|
2008-01-05 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* doc/c-i386.texi: Update .att_mnemonic and .intel_mnemonic.
|
* doc/c-i386.texi: Update .att_mnemonic and .intel_mnemonic.
|
||||||
|
@ -66,7 +66,7 @@ static void pe_directive_secrel (int);
|
|||||||
#endif
|
#endif
|
||||||
static void signed_cons (int);
|
static void signed_cons (int);
|
||||||
static char *output_invalid (int c);
|
static char *output_invalid (int c);
|
||||||
static int i386_operand (char *);
|
static int i386_att_operand (char *);
|
||||||
static int i386_intel_operand (char *, int);
|
static int i386_intel_operand (char *, int);
|
||||||
static const reg_entry *parse_register (char *, char **);
|
static const reg_entry *parse_register (char *, char **);
|
||||||
static char *parse_insn (char *, char *);
|
static char *parse_insn (char *, char *);
|
||||||
@ -2656,7 +2656,7 @@ parse_operands (char *l, const char *mnemonic)
|
|||||||
i386_intel_operand (token_start,
|
i386_intel_operand (token_start,
|
||||||
intel_float_operand (mnemonic));
|
intel_float_operand (mnemonic));
|
||||||
else
|
else
|
||||||
operand_ok = i386_operand (token_start);
|
operand_ok = i386_att_operand (token_start);
|
||||||
|
|
||||||
RESTORE_END_STRING (l);
|
RESTORE_END_STRING (l);
|
||||||
if (!operand_ok)
|
if (!operand_ok)
|
||||||
@ -6054,7 +6054,7 @@ i386_index_check (const char *operand_string)
|
|||||||
on error. */
|
on error. */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
i386_operand (char *operand_string)
|
i386_att_operand (char *operand_string)
|
||||||
{
|
{
|
||||||
const reg_entry *r;
|
const reg_entry *r;
|
||||||
char *end_op;
|
char *end_op;
|
||||||
|
Reference in New Issue
Block a user