From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lgxru-0004e8-99 for qemu-devel@nongnu.org; Tue, 10 Mar 2009 05:03:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lgxrt-0004dl-Qc for qemu-devel@nongnu.org; Tue, 10 Mar 2009 05:03:21 -0400 Received: from [199.232.76.173] (port=38297 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lgxrt-0004de-FG for qemu-devel@nongnu.org; Tue, 10 Mar 2009 05:03:21 -0400 Received: from savannah.gnu.org ([199.232.41.3]:36656 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 1Lgxrs-0005dH-UG for qemu-devel@nongnu.org; Tue, 10 Mar 2009 05:03:21 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lgxrr-0004Ec-QA for qemu-devel@nongnu.org; Tue, 10 Mar 2009 09:03:19 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lgxrr-0004EW-1Q for qemu-devel@nongnu.org; Tue, 10 Mar 2009 09:03:19 +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: Tue, 10 Mar 2009 09:03:19 +0000 Subject: [Qemu-devel] [6801] target-mips: use nor instead of or + not 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: 6801 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6801 Author: aurel32 Date: 2009-03-10 09:03:18 +0000 (Tue, 10 Mar 2009) Log Message: ----------- target-mips: use nor instead of or + not Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-mips/translate.c Modified: trunk/target-mips/translate.c =================================================================== --- trunk/target-mips/translate.c 2009-03-10 08:57:16 UTC (rev 6800) +++ trunk/target-mips/translate.c 2009-03-10 09:03:18 UTC (rev 6801) @@ -1613,8 +1613,7 @@ opn = "and"; break; case OPC_NOR: - tcg_gen_or_tl(t0, t0, t1); - tcg_gen_not_tl(t0, t0); + tcg_gen_nor_tl(t0, t0, t1); opn = "nor"; break; case OPC_OR: