From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TPKHy-0005kU-8l for qemu-devel@nongnu.org; Fri, 19 Oct 2012 17:39:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TPKHt-0005Tj-Ks for qemu-devel@nongnu.org; Fri, 19 Oct 2012 17:39:30 -0400 Received: from hall.aurel32.net ([88.191.126.93]:41849) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TPKHt-0005Sn-Eg for qemu-devel@nongnu.org; Fri, 19 Oct 2012 17:39:25 -0400 From: Aurelien Jarno Date: Fri, 19 Oct 2012 23:38:55 +0200 Message-Id: <1350682755-31635-7-git-send-email-aurelien@aurel32.net> In-Reply-To: <1350682755-31635-1-git-send-email-aurelien@aurel32.net> References: <1350682755-31635-1-git-send-email-aurelien@aurel32.net> Subject: [Qemu-devel] [PATCH v3 06/26] tcg: improve tcg_reg_alloc_movi() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Aurelien Jarno Now that the liveness analysis might mark some output temps as dead, call temp_dead() if needed. Reviewed-by: Richard Henderson Signed-off-by: Aurelien Jarno --- tcg/tcg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tcg/tcg.c b/tcg/tcg.c index 567ec87..6586385 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -1705,6 +1705,9 @@ static void tcg_reg_alloc_movi(TCGContext *s, const TCGArg *args, if (NEED_SYNC_ARG(0)) { temp_sync(s, args[0], s->reserved_regs); } + if (IS_DEAD_ARG(0)) { + temp_dead(s, args[0]); + } } static void tcg_reg_alloc_mov(TCGContext *s, const TCGOpDef *def, -- 1.7.10.4