From: Ian Lance Taylor Date: Thu, 10 Jun 1999 21:43:24 +0000 (+0000) Subject: * config/tc-sparc.c (sparc_ip): Add default case to reloc switch. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1b50c718931217987ec4b6ba2799314c4d9e27d4;p=binutils-gdb.git * config/tc-sparc.c (sparc_ip): Add default case to reloc switch. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e1d0f103c69..d7b5137fc44 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ 1999-06-11 Ian Lance Taylor + * config/tc-sparc.c (sparc_ip): Add default case to reloc switch. + * read.c (read_a_source_file): Only declare inescape if QUOTES_IN_INSN. diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 6894ca1a824..88a9f703cd5 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -2173,6 +2173,9 @@ sparc_ip (str, pinsn) valueT val = the_insn.exp.X_add_number; switch (the_insn.reloc) { + default: + break; + case BFD_RELOC_SPARC_HH22: val = BSR (val, 32); /* intentional fallthrough */