diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-25 07:49:10 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-25 07:49:10 +0000 |
commit | 3aa662faaebdebfe108e3d96398153530330ddf2 (patch) | |
tree | 0a0c7b1d075ef491dbe202eac6307546a6ccf0b1 | |
parent | 306ab3e86a94b7547883ca9dac0c86122bb8622c (diff) | |
download | qemu-3aa662faaebdebfe108e3d96398153530330ddf2.zip |
Enforce context table alignment
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3857 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | target-sparc/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c index 894e32628d..d657c31287 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -129,7 +129,7 @@ int get_physical_address (CPUState *env, target_phys_addr_t *physical, int *prot /* SPARC reference MMU table walk: Context table->L1->L2->PTE */ /* Context base + context number */ - pde_ptr = (env->mmuregs[1] << 4) + (env->mmuregs[2] << 2); + pde_ptr = ((env->mmuregs[1] & ~63)<< 4) + (env->mmuregs[2] << 2); pde = ldl_phys(pde_ptr); /* Ctx pde */ |