* [Qemu-devel] [6970] SH: Fix linux-user _is_cached typo.
@ 2009-04-03 7:33 Edgar E. Iglesias
0 siblings, 0 replies; only message in thread
From: Edgar E. Iglesias @ 2009-04-03 7:33 UTC (permalink / raw)
To: qemu-devel
Revision: 6970
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6970
Author: edgar_igl
Date: 2009-04-03 07:33:24 +0000 (Fri, 03 Apr 2009)
Log Message:
-----------
SH: Fix linux-user _is_cached typo.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Modified Paths:
--------------
trunk/target-sh4/helper.c
Modified: trunk/target-sh4/helper.c
===================================================================
--- trunk/target-sh4/helper.c 2009-04-03 07:29:38 UTC (rev 6969)
+++ trunk/target-sh4/helper.c 2009-04-03 07:33:24 UTC (rev 6970)
@@ -63,7 +63,7 @@
int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr)
{
/* For user mode, only U0 area is cachable. */
- return !!(addr & 0x80000000);
+ return !(addr & 0x80000000);
}
#else /* !CONFIG_USER_ONLY */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-04-03 7:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-03 7:33 [Qemu-devel] [6970] SH: Fix linux-user _is_cached typo Edgar E. Iglesias
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).