blob: e6df123e191068dd78e462add2e816d3966de509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
/* { dg-require-effective-target sse4 } */
/* { dg-options "-O2 -msse4.1" } */
#include "sse4_1-check.h"
#include <smmintrin.h>
#define NUM 128
static void
sse4_1_test (void)
{
union
{
__m128i x[NUM / 2];
unsigned long long ll[NUM];
unsigned int i[NUM * 2];
} dst, src;
int i;
for (i = 0; i < NUM; i++)
{
src.i[(i % 2) + (i / 2) * 4] = i * i;
if ((i % 2))
src.i[(i % 2) + (i / 2) * 4] |= 0x80000000;
}
for (i = 0; i < NUM; i += 2)
dst.x [i / 2] = _mm_cvtepu32_epi64 (src.x [i / 2]);
for (i = 0; i < NUM; i++)
if (src.i[(i % 2) + (i / 2) * 4] != dst.ll[i])
abort ();
}
|