From 1481e16abbab14a2e19410770f97cb764bb9be16 Mon Sep 17 00:00:00 2001 From: malc Date: Wed, 13 May 2009 15:18:48 +0400 Subject: [PATCH] Fix typo that leads to out of bounds array access on big endian systems --- target-ppc/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++) { \ -- 2.11.4.GIT