From: Richard Henderson Date: Wed, 28 May 2014 21:01:44 +0000 (-0700) Subject: tcg-i386: Fix win64 qemu store X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0b919667302aa395bfde0328749dc21a0b123c44;p=osstest%2Fqemu.git tcg-i386: Fix win64 qemu store The first non-register argument isn't placed at offset 0. Cc: qemu-stable@nongnu.org Reviewed-by: Stefan Weil Signed-off-by: Richard Henderson --- diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index d9102335f..4133dcf1a 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -1407,7 +1407,8 @@ static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l) } else { retaddr = TCG_REG_RAX; tcg_out_movi(s, TCG_TYPE_PTR, retaddr, (uintptr_t)l->raddr); - tcg_out_st(s, TCG_TYPE_PTR, retaddr, TCG_REG_ESP, 0); + tcg_out_st(s, TCG_TYPE_PTR, retaddr, TCG_REG_ESP, + TCG_TARGET_CALL_STACK_OFFSET); } }