2004-01-05 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Mon, 5 Jan 2004 23:09:45 +0000 (23:09 +0000)
committerAndrew Cagney <cagney@redhat.com>
Mon, 5 Jan 2004 23:09:45 +0000 (23:09 +0000)
* ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
should be a switch case and not a label.
* mips-tdep.c (mips32_next_pc): Delete unused labels
"greater_equal_branch" and "less_zero_branch".
* jv-valprint.c (java_print_value_fields): Delete unused label
"flush_it".

gdb/ChangeLog
gdb/jv-valprint.c
gdb/mips-tdep.c
gdb/ser-unix.c

index 4a0ba8b..2152f27 100644 (file)
@@ -1,5 +1,12 @@
 2004-01-05  Andrew Cagney  <cagney@redhat.com>
 
+       * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
+       should be a switch case and not a label.
+       * mips-tdep.c (mips32_next_pc): Delete unused labels
+       "greater_equal_branch" and "less_zero_branch".
+       * jv-valprint.c (java_print_value_fields): Delete unused label
+       "flush_it".
+
        * target.c (unpush_target): Only close a target that is in the
        target stack.
 
index 1875eef..9756004 100644 (file)
@@ -298,9 +298,6 @@ java_print_value_fields (struct type *type, char *valaddr, CORE_ADDR address,
          java_print_value_fields (baseclass, base_valaddr, address + boffset,
                                   stream, format, recurse + 1, pretty);
          fputs_filtered (", ", stream);
-
-       flush_it:
-         ;
        }
 
     }
index 2c3e8c2..406467a 100644 (file)
@@ -1083,7 +1083,6 @@ mips32_next_pc (CORE_ADDR pc)
              case 3:           /* BGEZL */
              case 17:          /* BGEZAL */
              case 19:          /* BGEZALL */
-             greater_equal_branch:
                if (read_signed_register (itype_rs (inst)) >= 0)
                  pc += mips32_relative_offset (inst) + 4;
                else
@@ -1129,7 +1128,6 @@ mips32_next_pc (CORE_ADDR pc)
            pc += 8;
          break;
        case 6:         /* BLEZ, BLEZL */
-       less_zero_branch:
          if (read_signed_register (itype_rs (inst) <= 0))
            pc += mips32_relative_offset (inst) + 4;
          else
index e7a5d93..0b73958 100644 (file)
@@ -1324,7 +1324,7 @@ ser_unix_async (struct serial *scb,
        case FD_SCHEDULED:
          delete_file_handler (scb->fd);
          break;
-       NOTHING_SCHEDULED:
+       case NOTHING_SCHEDULED:
          break;
        default: /* TIMER SCHEDULED */
          delete_timer (scb->async_state);