aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-06-10 21:47:35 +0000
committerIan Lance Taylor <ian@airs.com>1999-06-10 21:47:35 +0000
commit5865bb778de378f3bfd1a99fc7601bcc32ae198b (patch)
tree347572122b0484a82ec68ef48bcee19622bef602 /gas
parent9e7c96d9d0d8c932d08f29d36eee36e1cf1b97d0 (diff)
downloadgdb-5865bb778de378f3bfd1a99fc7601bcc32ae198b.zip
gdb-5865bb778de378f3bfd1a99fc7601bcc32ae198b.tar.gz
gdb-5865bb778de378f3bfd1a99fc7601bcc32ae198b.tar.bz2
* config/tc-i386.c (md_apply_fix3): Add default case to switch.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog2
-rw-r--r--gas/config/tc-i386.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index db5f1c3..77e26bf 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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.
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index ab5cbfb..19fee3a 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;