summaryrefslogtreecommitdiffstats
path: root/disas.c
diff options
context:
space:
mode:
authorBlue Swirl2012-09-22 19:59:15 +0200
committerBlue Swirl2012-09-22 19:59:15 +0200
commit04cbbdeefdda2615b11f7890f1e61b750e83129f (patch)
treec2426674527ce95eec5ccbf4bf5cae1eec3d7ea0 /disas.c
parenttarget-xtensa: implement coprocessor context option (diff)
parenttcg-sparc: Preserve branch destinations during retranslation (diff)
downloadqemu-04cbbdeefdda2615b11f7890f1e61b750e83129f.tar.gz
qemu-04cbbdeefdda2615b11f7890f1e61b750e83129f.tar.xz
qemu-04cbbdeefdda2615b11f7890f1e61b750e83129f.zip
Merge branch 'tcg-sparc' of git://repo.or.cz/qemu/rth
* 'tcg-sparc' of git://repo.or.cz/qemu/rth: tcg-sparc: Preserve branch destinations during retranslation tcg-sparc: Fix and enable direct TB chaining. tcg-sparc: Add %g/%o registers to alloc_order tcg-sparc: Use defines for temporaries. tcg-sparc: Mask shift immediates to avoid illegal insns. tcg-sparc: Clean up cruft stemming from attempts to use global registers. tcg-sparc: Change AREG0 in generated code to %i0. tcg-sparc: Support GUEST_BASE. tcg-sparc: Fix qemu_ld/st to handle 32-bit host. tcg-sparc: Assume v9 cpu always, i.e. force v8plus in 32-bit mode. tcg-sparc: Don't MAP_FIXED on top of the program tcg-sparc: Fix ADDX opcode. tcg-sparc: Hack in qemu_ld/st64 for 32-bit. linux-user: Use memcpy in get_user/put_user.
Diffstat (limited to 'disas.c')
-rw-r--r--disas.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/disas.c b/disas.c
index 7b2acc9943..b801c8f51d 100644
--- a/disas.c
+++ b/disas.c
@@ -316,9 +316,7 @@ void disas(FILE *out, void *code, unsigned long size)
print_insn = print_insn_alpha;
#elif defined(__sparc__)
print_insn = print_insn_sparc;
-#if defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
disasm_info.mach = bfd_mach_sparc_v9b;
-#endif
#elif defined(__arm__)
print_insn = print_insn_arm;
#elif defined(__MIPSEB__)