]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Remove accidental case duplication.
authorJeff Law <law@redhat.com>
Thu, 23 Sep 1999 16:09:23 +0000 (16:09 +0000)
committerJeff Law <law@redhat.com>
Thu, 23 Sep 1999 16:09:23 +0000 (16:09 +0000)
gas/config/tc-hppa.c

index 251ae3787dd724acd3a61f81e775ac6b3438041f..6846802a34a9f9e30e3f5dfab24fa39b9cc3869c 100644 (file)
@@ -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 ();
            }