mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
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
This commit is contained in:
parent
3c1adf1235
commit
679dee3c6c
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ target_phys_addr_t cpu_get_phys_page_debug(CPUState * env, target_ulong addr)
|
||||||
int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr)
|
int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr)
|
||||||
{
|
{
|
||||||
/* For user mode, only U0 area is cachable. */
|
/* For user mode, only U0 area is cachable. */
|
||||||
return !!(addr & 0x80000000);
|
return !(addr & 0x80000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* !CONFIG_USER_ONLY */
|
#else /* !CONFIG_USER_ONLY */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue