mirror of
https://github.com/qemu/qemu.git
synced 2025-07-27 12:20:07 +00:00
address printing fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@324 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
070893f425
commit
d44b29c21e
4
disas.c
4
disas.c
@ -42,7 +42,7 @@ perror_memory (status, memaddr, info)
|
|||||||
/* Actually, address between memaddr and memaddr + len was
|
/* Actually, address between memaddr and memaddr + len was
|
||||||
out of bounds. */
|
out of bounds. */
|
||||||
(*info->fprintf_func) (info->stream,
|
(*info->fprintf_func) (info->stream,
|
||||||
"Address 0x%x is out of bounds.\n", memaddr);
|
"Address 0x%llx is out of bounds.\n", memaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This could be in a separate file, to save miniscule amounts of space
|
/* This could be in a separate file, to save miniscule amounts of space
|
||||||
@ -57,7 +57,7 @@ generic_print_address (addr, info)
|
|||||||
bfd_vma addr;
|
bfd_vma addr;
|
||||||
struct disassemble_info *info;
|
struct disassemble_info *info;
|
||||||
{
|
{
|
||||||
(*info->fprintf_func) (info->stream, "0x%x", addr);
|
(*info->fprintf_func) (info->stream, "0x%llx", addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Just return the given address. */
|
/* Just return the given address. */
|
||||||
|
Loading…
Reference in New Issue
Block a user