summaryrefslogtreecommitdiffstats
path: root/target-ppc
diff options
context:
space:
mode:
authormalc2009-05-13 13:18:48 +0200
committermalc2009-05-13 13:18:48 +0200
commit1481e16abbab14a2e19410770f97cb764bb9be16 (patch)
tree0f1a5bc3f8787cd03518b310b1cdbefc657d01c1 /target-ppc
parentETRAX: Correct setting of ethernet station address. (diff)
downloadqemu-1481e16abbab14a2e19410770f97cb764bb9be16.tar.gz
qemu-1481e16abbab14a2e19410770f97cb764bb9be16.tar.xz
qemu-1481e16abbab14a2e19410770f97cb764bb9be16.zip
Fix typo that leads to out of bounds array access on big endian systems
Diffstat (limited to 'target-ppc')
-rw-r--r--target-ppc/op_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/op_helper.c b/target-ppc/op_helper.c
index 2c6a27fcba..56fab9cb06 100644
--- a/target-ppc/op_helper.c
+++ b/target-ppc/op_helper.c
@@ -2723,7 +2723,7 @@ void helper_vlogefp (ppc_avr_t *r, ppc_avr_t *b)
#define VSHIFT(suffix, leftp) \
void helper_vs##suffix (ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b) \
{ \
- int shift = b->u8[LO_IDX*0x15] & 0x7; \
+ int shift = b->u8[LO_IDX*15] & 0x7; \
int doit = 1; \
int i; \
for (i = 0; i < ARRAY_SIZE(r->u8); i++) { \