mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 01:48:46 +08:00
* gdbcore.h (read_memory_nobpt): New function name instead of
deprecated_read_memory_nobpt. * breakpoint.c (read_memory_nobpt): New function name instead of deprecated_read_memory_nobpt. Adjust calls to old deprecated_read_memory_nobpt accordingly. * alpha-tdep.c: Adjust calls to deprecated_read_memory_nobpt accordingly. * alphanbsd-tdep.c: Likewise. * frame.c: Likewise. * frv-tdep.c: Likewise. * hppa-linux-tdep.c: Likewise. * hppa-tdep.c: Likewise. * i386-linux-nat.c: Likewise. * m68klinux-tdep.c: Likewise. * mips-tdep.c: Likewise. * s390-tdep.c: Likewise.
This commit is contained in:
@ -457,7 +457,7 @@ frv_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr
|
||||
char instr[frv_instr_size];
|
||||
int status;
|
||||
|
||||
status = deprecated_read_memory_nobpt (addr, instr, sizeof instr);
|
||||
status = read_memory_nobpt (addr, instr, sizeof instr);
|
||||
|
||||
if (status != 0)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user