diff options
Diffstat (limited to 'target-ppc/op_helper.h')
-rw-r--r-- | target-ppc/op_helper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target-ppc/op_helper.h b/target-ppc/op_helper.h index 293031075a..82307d44f9 100644 --- a/target-ppc/op_helper.h +++ b/target-ppc/op_helper.h @@ -183,7 +183,7 @@ void do_load_403_pb (int num); void do_store_403_pb (int num); #endif -#if defined(TARGET_PPCSPE) +#if defined(TARGET_PPCEMB) /* SPE extension helpers */ void do_brinc (void); /* Fixed-point vector helpers */ @@ -264,7 +264,7 @@ void do_evfsctsi (void); void do_evfsctui (void); void do_evfsctsiz (void); void do_evfsctuiz (void); -#endif /* defined(TARGET_PPCSPE) */ +#endif /* defined(TARGET_PPCEMB) */ /* Inlined helpers: used in micro-operation as well as helpers */ /* Generic fixed-point helpers */ @@ -338,7 +338,7 @@ static inline int _do_cntlzd (uint64_t val) return cnt; } -#if defined(TARGET_PPCSPE) +#if defined(TARGET_PPCEMB) /* SPE extension */ /* Single precision floating-point helpers */ static inline uint32_t _do_efsabs (uint32_t val) @@ -459,5 +459,5 @@ static inline int _do_efdtsteq (uint64_t op1, uint64_t op2) u2.u = op2; return float64_eq(u1.f, u2.f, &env->spe_status) ? 1 : 0; } -#endif /* defined(TARGET_PPCSPE) */ +#endif /* defined(TARGET_PPCEMB) */ #endif |