forked from Imagelibrary/binutils-gdb
* sparc-tdep.c (sparc_fetch_instruction): Read instruction
using read_memory_nobpt.
This commit is contained in:
@@ -99,7 +99,7 @@ sparc_fetch_instruction (CORE_ADDR pc)
|
||||
int i;
|
||||
|
||||
/* If we can't read the instruction at PC, return zero. */
|
||||
if (target_read_memory (pc, buf, sizeof (buf)))
|
||||
if (read_memory_nobpt (pc, buf, sizeof (buf)))
|
||||
return 0;
|
||||
|
||||
insn = 0;
|
||||
|
||||
Reference in New Issue
Block a user