diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-10-26 17:26:29 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-10-26 17:26:29 +0000 |
commit | 931bb47f455fbc152330c510688c58699deef171 (patch) | |
tree | ce6f84fbfd88b0025724424e517d30f659bd17ed /gdb/spu-tdep.c | |
parent | 88aed45eb4ababaaa2687317cad47a7ff35bdb9c (diff) | |
download | binutils-gdb-931bb47f455fbc152330c510688c58699deef171.tar.gz |
* spu-tdep.c (spu_catch_start): Pass non-NULL breakpoint ops
to create_breakpoint.
Diffstat (limited to 'gdb/spu-tdep.c')
-rw-r--r-- | gdb/spu-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index 570809f3fc2..d42d94b1e9c 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -1939,8 +1939,8 @@ spu_catch_start (struct objfile *objfile) bp_breakpoint /* type_wanted */, 0 /* ignore_count */, AUTO_BOOLEAN_FALSE /* pending_break_support */, - NULL /* ops */, 0 /* from_tty */, 1 /* enabled */, - 0 /* internal */); + &bkpt_breakpoint_ops /* ops */, 0 /* from_tty */, + 1 /* enabled */, 0 /* internal */); } |