sse5-haddX.c, [...]: Avoid intN_t types.
* gcc.target/i386/sse5-haddX.c, gcc.target/i386/sse5-hsubX.c: Avoid intN_t types. From-SVN: r140298
This commit is contained in:
parent
c82bde8afc
commit
716588aa8e
3 changed files with 13 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-09-11 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* gcc.target/i386/sse5-haddX.c, gcc.target/i386/sse5-hsubX.c:
|
||||
Avoid intN_t types.
|
||||
|
||||
2008-09-11 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* gcc.dg/builtins-8.c: Condition cbrt test on HAVE_C99_RUNTIME.
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
union
|
||||
{
|
||||
__m128i x[NUM];
|
||||
int8_t ssi[NUM * 16];
|
||||
int16_t si[NUM * 8];
|
||||
int32_t li[NUM * 4];
|
||||
int64_t lli[NUM * 2];
|
||||
signed char ssi[NUM * 16];
|
||||
short si[NUM * 8];
|
||||
int li[NUM * 4];
|
||||
long long lli[NUM * 2];
|
||||
} dst, res, src1;
|
||||
|
||||
static void
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
union
|
||||
{
|
||||
__m128i x[NUM];
|
||||
int8_t ssi[NUM * 16];
|
||||
int16_t si[NUM * 8];
|
||||
int32_t li[NUM * 4];
|
||||
int64_t lli[NUM * 2];
|
||||
signed char ssi[NUM * 16];
|
||||
short si[NUM * 8];
|
||||
int li[NUM * 4];
|
||||
long long lli[NUM * 2];
|
||||
} dst, res, src1;
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Reference in a new issue