diff --git a/memcheck/tests/ppc32/power_ISA2_05.c b/memcheck/tests/ppc32/power_ISA2_05.c index 0cc60f67d..a95f4275e 100644 --- a/memcheck/tests/ppc32/power_ISA2_05.c +++ b/memcheck/tests/ppc32/power_ISA2_05.c @@ -23,14 +23,13 @@ int base256(int val) void test_parity_instrs() { - unsigned long long_word; unsigned int word; int i, parity; for (i = 0; i < 50; i++) { word = base256(i); #ifdef __powerpc64__ - long_word = word; + unsigned long long_word = word; __asm__ volatile ("prtyd %0, %1":"=r" (parity):"r"(long_word)); printf("prtyd (%x) => parity=%x\n", i, parity); #endif