Revision 65d6c0f3 target-ppc/op_template.h

b/target-ppc/op_template.h
58 58
#endif
59 59

  
60 60
/* General purpose registers containing vector operands moves */
61
#if TARGET_GPR_BITS < 64
61
#if !defined(TARGET_PPC64)
62 62
void OPPROTO glue(op_load_gpr64_T0_gpr, REG) (void)
63 63
{
64 64
    T0_64 = (uint64_t)env->gpr[REG] | ((uint64_t)env->gprh[REG] << 32);
......
101 101
    RETURN();
102 102
}
103 103
#endif
104
#endif /* TARGET_GPR_BITS < 64 */
104
#endif /* !defined(TARGET_PPC64) */
105 105

  
106 106
/* Altivec registers moves */
107 107
void OPPROTO glue(op_load_avr_A0_avr, REG) (void)

Also available in: Unified diff