Browse Source

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".
cagney_bigcore-20040122-branch
Andrew Cagney 23 years ago
parent
commit
54f1137d66
  1. 7
      gdb/ChangeLog
  2. 3
      gdb/jv-valprint.c
  3. 2
      gdb/mips-tdep.c
  4. 2
      gdb/ser-unix.c

7
gdb/ChangeLog

@ -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.

3
gdb/jv-valprint.c

@ -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:
;
}
}

2
gdb/mips-tdep.c

@ -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

2
gdb/ser-unix.c

@ -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);

Loading…
Cancel
Save