]> git.proxmox.com Git - qemu.git/commit
tci: Fix qemu-alpha on 32 bit hosts (wrong assertions)
authorStefan Weil <sw@weilnetz.de>
Thu, 12 Sep 2013 18:17:50 +0000 (20:17 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Wed, 25 Sep 2013 03:56:25 +0000 (22:56 -0500)
commit5c20c1ffe791ca29840fd9607ea034ea24ad7bdd
treed3cb8d2a4ecdb0b5be174b31fb61afc47e4621d7
parent5d2de77798cacf1dadf6a4211972473e057cc6e5
tci: Fix qemu-alpha on 32 bit hosts (wrong assertions)

Debian busybox-static for alpha has a load address of 0x0000000120000000
which is mapped to 0x0000000020000000 for 32 bit hosts.

qemu-alpha uses the TCG opcodes qemu_ld32, qemu_ld64, qemu_st32 and
qemu_st64 which all raise the assertion (taddr == host_addr).

Remove all assertions of this type because they are either wrong or
unnecessary (when sizeof(tcg_target_ulong) >= sizeof(target_ulong)).

Cc: qemu-stable <qemu-stable@nongnu.org>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
(cherry picked from commit 07ac4dc5db22a31e47b149abdbc5ea99013cf4de)

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
tci.c