testsuite: Fix a typo - UINON_TYPE to UNION_TYPE - in gcc.target/powerpc
Spotted while fixing the rs6000 aliasing issue. 2021-01-22 Jakub Jelinek <jakub@redhat.com> * gcc.target/powerpc/m128-check.h (CHECK_EXP, CHECK_FP_EXP): Fix a typo, UINON_TYPE to UNION_TYPE.
This commit is contained in:
parent
b30e19b517
commit
70ab52b8ca
@ -83,11 +83,11 @@ typedef union
|
||||
#define PRINTF(...)
|
||||
#endif
|
||||
|
||||
#define CHECK_EXP(UINON_TYPE, VALUE_TYPE, FMT) \
|
||||
#define CHECK_EXP(UNION_TYPE, VALUE_TYPE, FMT) \
|
||||
static int \
|
||||
__attribute__((optimize ("no-strict-aliasing"))) \
|
||||
__attribute__((noinline, unused)) \
|
||||
check_##UINON_TYPE (UINON_TYPE u, const VALUE_TYPE *v) \
|
||||
check_##UNION_TYPE (UNION_TYPE u, const VALUE_TYPE *v) \
|
||||
{ \
|
||||
int i; \
|
||||
int err = 0; \
|
||||
@ -198,10 +198,10 @@ union ieee754_double
|
||||
};
|
||||
#endif
|
||||
|
||||
#define CHECK_FP_EXP(UINON_TYPE, VALUE_TYPE, ESP, FMT) \
|
||||
#define CHECK_FP_EXP(UNION_TYPE, VALUE_TYPE, ESP, FMT) \
|
||||
static int \
|
||||
__attribute__((noinline, unused)) \
|
||||
check_fp_##UINON_TYPE (UINON_TYPE u, const VALUE_TYPE *v) \
|
||||
check_fp_##UNION_TYPE (UNION_TYPE u, const VALUE_TYPE *v) \
|
||||
{ \
|
||||
int i; \
|
||||
int err = 0; \
|
||||
|
Loading…
Reference in New Issue
Block a user