From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kw4k8-0001BN-PO for qemu-devel@nongnu.org; Fri, 31 Oct 2008 20:53:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kw4k8-0001B3-3P for qemu-devel@nongnu.org; Fri, 31 Oct 2008 20:53:32 -0400 Received: from [199.232.76.173] (port=48020 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kw4k7-0001Az-UA for qemu-devel@nongnu.org; Fri, 31 Oct 2008 20:53:32 -0400 Received: from savannah.gnu.org ([199.232.41.3]:57763 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kw4k8-0002xV-Fs for qemu-devel@nongnu.org; Fri, 31 Oct 2008 20:53:32 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Kw4k6-0001MY-VL for qemu-devel@nongnu.org; Sat, 01 Nov 2008 00:53:31 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Kw4k6-0001MU-LV for qemu-devel@nongnu.org; Sat, 01 Nov 2008 00:53:30 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Sat, 01 Nov 2008 00:53:30 +0000 Subject: [Qemu-devel] [5586] target-cris: access to TCG variables through GET_TCGV() Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5586 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5586 Author: aurel32 Date: 2008-11-01 00:53:30 +0000 (Sat, 01 Nov 2008) Log Message: ----------- target-cris: access to TCG variables through GET_TCGV() Fix build with DEBUG_TCGV enabled. Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-cris/translate.c Modified: trunk/target-cris/translate.c =================================================================== --- trunk/target-cris/translate.c 2008-11-01 00:53:19 UTC (rev 5585) +++ trunk/target-cris/translate.c 2008-11-01 00:53:30 UTC (rev 5586) @@ -951,7 +951,7 @@ tcg_gen_andi_tl(d, d, ~0xffff); tcg_gen_or_tl(d, d, tmp); } - if (tmp != d) + if (GET_TCGV(tmp) != GET_TCGV(d)) tcg_temp_free(tmp); }