* [Qemu-devel] [6801] target-mips: use nor instead of or + not
@ 2009-03-10 9:03 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-03-10 9:03 UTC (permalink / raw)
To: qemu-devel
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 <aurelien@aurel32.net>
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:
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-10 9:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-10 9:03 [Qemu-devel] [6801] target-mips: use nor instead of or + not Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).