Commit 679dee3c6ca84c9111087808d3bfeb768d402566

Authored by edgar_igl
1 parent 3c1adf12

SH: Fix linux-user _is_cached typo.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6970 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-sh4/helper.c
... ... @@ -63,7 +63,7 @@ target_phys_addr_t cpu_get_phys_page_debug(CPUState * env, target_ulong addr)
63 63 int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr)
64 64 {
65 65 /* For user mode, only U0 area is cachable. */
66   - return !!(addr & 0x80000000);
  66 + return !(addr & 0x80000000);
67 67 }
68 68  
69 69 #else /* !CONFIG_USER_ONLY */
... ...