* config/tc-i386.c (md_apply_fix3): Add default case to switch.

This commit is contained in:
Ian Lance Taylor 1999-06-10 21:47:35 +00:00
parent 9e7c96d9d0
commit 5865bb778d
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,7 @@
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
popsection.

View File

@ -3912,6 +3912,9 @@ md_apply_fix3 (fixP, valp, seg)
{
switch (fixP->fx_r_type)
{
default:
break;
case BFD_RELOC_32:
fixP->fx_r_type = BFD_RELOC_32_PCREL;
break;