From 5865bb778de378f3bfd1a99fc7601bcc32ae198b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 10 Jun 1999 21:47:35 +0000 Subject: [PATCH] * config/tc-i386.c (md_apply_fix3): Add default case to switch. --- gas/ChangeLog | 2 ++ gas/config/tc-i386.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index db5f1c3c991..77e26bf1e28 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ 1999-06-11 Ian Lance Taylor + * config/tc-i386.c (md_apply_fix3): Add default case to switch. + * config/tc-sparc.c (md_pseudo_table): Remove pushsection and popsection. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index ab5cbfb66a2..19fee3a96e5 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -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; -- 2.30.2