mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
2009-10-13 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/10766 * config/tc-i386.c (build_modrm_byte): Declare exp earlier.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2009-10-13 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR binutils/10766
|
||||||
|
* config/tc-i386.c (build_modrm_byte): Declare exp earlier.
|
||||||
|
|
||||||
2009-10-13 H.J. Lu <hongjiu.lu@intel.com>
|
2009-10-13 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR gas/10740
|
PR gas/10740
|
||||||
|
@ -4873,6 +4873,7 @@ build_modrm_byte (void)
|
|||||||
if (vex_3_sources)
|
if (vex_3_sources)
|
||||||
{
|
{
|
||||||
unsigned int nds, reg;
|
unsigned int nds, reg;
|
||||||
|
expressionS *exp;
|
||||||
|
|
||||||
if (i.tm.opcode_modifier.veximmext
|
if (i.tm.opcode_modifier.veximmext
|
||||||
&& i.tm.opcode_modifier.immext)
|
&& i.tm.opcode_modifier.immext)
|
||||||
@ -4896,7 +4897,7 @@ build_modrm_byte (void)
|
|||||||
|
|
||||||
/* Generate an 8bit immediate operand to encode the register
|
/* Generate an 8bit immediate operand to encode the register
|
||||||
operand. */
|
operand. */
|
||||||
expressionS *exp = &im_expressions[i.imm_operands++];
|
exp = &im_expressions[i.imm_operands++];
|
||||||
i.op[i.operands].imms = exp;
|
i.op[i.operands].imms = exp;
|
||||||
i.types[i.operands] = imm8;
|
i.types[i.operands] = imm8;
|
||||||
i.operands++;
|
i.operands++;
|
||||||
|
Reference in New Issue
Block a user