From 46152182100e68f7f8aa4954af1bf91160bb3d15 Mon Sep 17 00:00:00 2001 From: pbrook Date: Sun, 30 Jul 2006 19:16:29 +0000 Subject: Rewrite Arm host support. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2071 c046a42c-6fe2-441c-8c8c-71466251a162 --- disas.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'disas.c') diff --git a/disas.c b/disas.c index fd91b9220..27b677792 100644 --- a/disas.c +++ b/disas.c @@ -271,11 +271,9 @@ void disas(FILE *out, void *code, unsigned long size) for (pc = (unsigned long)code; pc < (unsigned long)code + size; pc += count) { fprintf(out, "0x%08lx: ", pc); #ifdef __arm__ - /* since data are included in the code, it is better to + /* since data is included in the code, it is better to display code data too */ - if (is_host) { - fprintf(out, "%08x ", (int)bfd_getl32((const bfd_byte *)pc)); - } + fprintf(out, "%08x ", (int)bfd_getl32((const bfd_byte *)pc)); #endif count = print_insn(pc, &disasm_info); fprintf(out, "\n"); -- cgit v1.2.3