aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-01-05 23:09:45 +0000
committerAndrew Cagney <cagney@redhat.com>2004-01-05 23:09:45 +0000
commit54f1137d66be5ee162692309ef76ec749a2cb8ca (patch)
treee97c4d49b0a8d8686a28c156c0043cf12ac4f41b /gdb/mips-tdep.c
parent295320329c94706744dba657b53a45693150ccf1 (diff)
downloadgdb-54f1137d66be5ee162692309ef76ec749a2cb8ca.zip
gdb-54f1137d66be5ee162692309ef76ec749a2cb8ca.tar.gz
gdb-54f1137d66be5ee162692309ef76ec749a2cb8ca.tar.bz2
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".
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 2c3e8c2..406467a 100644
--- a/gdb/mips-tdep.c
+++ b/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