mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
* config/tc-i386.c (md_apply_fix3): Add default case to switch.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
1999-06-11 Ian Lance Taylor <ian@zembu.com>
|
1999-06-11 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
|
* config/tc-i386.c (md_apply_fix3): Add default case to switch.
|
||||||
|
|
||||||
* config/tc-sparc.c (md_pseudo_table): Remove pushsection and
|
* config/tc-sparc.c (md_pseudo_table): Remove pushsection and
|
||||||
popsection.
|
popsection.
|
||||||
|
|
||||||
|
@ -3912,6 +3912,9 @@ md_apply_fix3 (fixP, valp, seg)
|
|||||||
{
|
{
|
||||||
switch (fixP->fx_r_type)
|
switch (fixP->fx_r_type)
|
||||||
{
|
{
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
|
||||||
case BFD_RELOC_32:
|
case BFD_RELOC_32:
|
||||||
fixP->fx_r_type = BFD_RELOC_32_PCREL;
|
fixP->fx_r_type = BFD_RELOC_32_PCREL;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user