summaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorandreast <andreast>2012-12-19 20:57:54 +0000
committerandreast <andreast>2012-12-19 20:57:54 +0000
commitbf699244973ce73ede6c389894f3c320e2c79eb1 (patch)
tree5cbf46f7fe1caccfff9dc7fccecc155d7ce6aba0 /gdb/mips-tdep.c
parent08d99bfb5aec0edcfe3ed8b84cdfc36bf3c6f74b (diff)
downloadgdb-bf699244973ce73ede6c389894f3c320e2c79eb1.tar.gz
2012-12-19 Andreas Tobler <andreast@neon.andreas.nets>
* mips-tdep.c (micromips_deal_with_atomic_sequence): Initialize branch_bp to keep gcc happy.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 8140f237320..792ae6ef7f9 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -3796,7 +3796,8 @@ micromips_deal_with_atomic_sequence (struct gdbarch *gdbarch,
const int atomic_sequence_length = 16; /* Instruction sequence length. */
int last_breakpoint = 0; /* Defaults to 0 (no breakpoints placed). */
CORE_ADDR breaks[2] = {-1, -1};
- CORE_ADDR branch_bp; /* Breakpoint at branch instruction's destination. */
+ CORE_ADDR branch_bp = 0; /* Breakpoint at branch instruction's
+ destination. */
CORE_ADDR loc = pc;
int sc_found = 0;
ULONGEST insn;