mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
Restore fall through patch for O_multiply.
2010-07-12 H.J. Lu <hongjiu.lu@intel.com> PR gas/11806 * config/tc-i386-intel.c (i386_intel_simplify): Restore fall through patch for O_multiply.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2010-07-12 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR gas/11806
|
||||||
|
* config/tc-i386-intel.c (i386_intel_simplify): Restore fall
|
||||||
|
through patch for O_multiply.
|
||||||
|
|
||||||
2010-07-11 Kai Tietz <kai.tietz@onevision.com>
|
2010-07-11 Kai Tietz <kai.tietz@onevision.com>
|
||||||
|
|
||||||
PR ld/11612
|
PR ld/11612
|
||||||
|
@ -434,6 +434,7 @@ static int i386_intel_simplify (expressionS *e)
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
goto fallthrough;
|
||||||
|
|
||||||
case O_register:
|
case O_register:
|
||||||
ret = i386_intel_simplify_register (e);
|
ret = i386_intel_simplify_register (e);
|
||||||
@ -452,6 +453,7 @@ static int i386_intel_simplify (expressionS *e)
|
|||||||
|
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
default:
|
default:
|
||||||
|
fallthrough:
|
||||||
if (e->X_add_symbol && !i386_intel_simplify_symbol (e->X_add_symbol))
|
if (e->X_add_symbol && !i386_intel_simplify_symbol (e->X_add_symbol))
|
||||||
return 0;
|
return 0;
|
||||||
if (e->X_op == O_add || e->X_op == O_subtract)
|
if (e->X_op == O_add || e->X_op == O_subtract)
|
||||||
|
Reference in New Issue
Block a user