mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* core.c (dis_asm_read_memory): drop fourth arg which conflicts with
prototype in ../include/dis-asm.h.
This commit is contained in:
@@ -161,13 +161,15 @@ read_memory (memaddr, myaddr, len)
|
||||
memory_error (status, memaddr);
|
||||
}
|
||||
|
||||
/* Like target_read_memory, but slightly different parameters. */
|
||||
/* Like target_read_memory, but slightly different parameters.
|
||||
|
||||
FIXME: not according to it's prototype. 930331 krp. */
|
||||
|
||||
int
|
||||
dis_asm_read_memory (memaddr, myaddr, len, info)
|
||||
dis_asm_read_memory (memaddr, myaddr, len)
|
||||
bfd_vma memaddr;
|
||||
bfd_byte *myaddr;
|
||||
int len;
|
||||
disassemble_info *info;
|
||||
{
|
||||
return target_read_memory (memaddr, myaddr, len);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user