aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1999-09-23 16:09:23 +0000
committerJeff Law <law@redhat.com>1999-09-23 16:09:23 +0000
commitd3426803c579b3e53b702d95b11eff681d653209 (patch)
tree52d6c4c1fe43c919357cdf0fc1844650183ac740 /gas
parente4df56c400334a4ccdd4686ccfdead78e2d81661 (diff)
downloadfsf-binutils-gdb-d3426803c579b3e53b702d95b11eff681d653209.zip
fsf-binutils-gdb-d3426803c579b3e53b702d95b11eff681d653209.tar.gz
fsf-binutils-gdb-d3426803c579b3e53b702d95b11eff681d653209.tar.bz2
Remove accidental case duplication.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-hppa.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c
index 251ae37..6846802 100644
--- a/gas/config/tc-hppa.c
+++ b/gas/config/tc-hppa.c
@@ -3706,29 +3706,12 @@ pa_ip (str)
opcode |= (result.l_r_select & 1) << 1;
}
continue;
+ }
default:
abort ();
}
break;
- /* Handle L/R register halves like 'x'. */
- case 'e':
- {
- struct pa_11_fp_reg_struct result;
-
- /* This should be more strict. Small steps. */
- if (strict && *s != '%')
- break;
- pa_parse_number (&s, &result);
- CHECK_FIELD (result.number_part, 31, 0, 0);
- opcode |= (result.number_part & 0x1f) << 16;
- if (need_pa11_opcode (&the_insn, &result))
- {
- opcode |= (result.l_r_select & 1) << 1;
- }
- continue;
- }
-
default:
abort ();
}