summaryrefslogtreecommitdiff
path: root/target-ppc
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-05-13 15:18:48 +0400
committermalc <av1474@comtv.ru>2009-05-13 15:18:48 +0400
commit1481e16abbab14a2e19410770f97cb764bb9be16 (patch)
tree0f1a5bc3f8787cd03518b310b1cdbefc657d01c1 /target-ppc
parent4af6e404e850d4ff2b2df2df358954108045ebd2 (diff)
downloadqemu-1481e16abbab14a2e19410770f97cb764bb9be16.tar.gz
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++) { \