From c88931b0edd04397d59574c2708a10135eb7cd04 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sun, 13 Apr 2003 08:54:06 +0000 Subject: Only call XScale_check_memacc if in XScale mode. --- sim/arm/armvirt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sim/arm/armvirt.c') diff --git a/sim/arm/armvirt.c b/sim/arm/armvirt.c index 26fd905ac36..23038a1739d 100644 --- a/sim/arm/armvirt.c +++ b/sim/arm/armvirt.c @@ -64,7 +64,7 @@ GetWord (ARMul_State * state, ARMword address, int check) ARMword **pagetable; ARMword *pageptr; - if (check) + if (check && state->is_XScale) XScale_check_memacc (state, &address, 0); page = address >> PAGEBITS; @@ -100,7 +100,7 @@ PutWord (ARMul_State * state, ARMword address, ARMword data, int check) ARMword **pagetable; ARMword *pageptr; - if (check) + if (check && state->is_XScale) XScale_check_memacc (state, &address, 1); page = address >> PAGEBITS; -- cgit v1.2.1