Commit 716588aa by Joseph Myers Committed by Joseph Myers

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
parent c82bde8a
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.
2008-09-11 Paolo Bonzini <bonzini@gnu.org>
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment