diff options
Diffstat (limited to 'gdb/nios2-tdep.c')
-rw-r--r-- | gdb/nios2-tdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/nios2-tdep.c b/gdb/nios2-tdep.c index 2955a69..67861ca 100644 --- a/gdb/nios2-tdep.c +++ b/gdb/nios2-tdep.c @@ -2219,16 +2219,16 @@ nios2_get_next_pc (struct frame_info *frame, CORE_ADDR pc) /* Implement the software_single_step gdbarch method. */ -static int +static VEC (CORE_ADDR) * nios2_software_single_step (struct frame_info *frame) { struct gdbarch *gdbarch = get_frame_arch (frame); - struct address_space *aspace = get_frame_address_space (frame); CORE_ADDR next_pc = nios2_get_next_pc (frame, get_frame_pc (frame)); + VEC (CORE_ADDR) *next_pcs = NULL; - insert_single_step_breakpoint (gdbarch, aspace, next_pc); + VEC_safe_push (CORE_ADDR, next_pcs, next_pc); - return 1; + return next_pcs; } /* Implement the get_longjump_target gdbarch method. */ |