blob: e1a0a2270cb00533587bed20b416df018a15c4a5 (
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
36
37
38
|
/* { dg-do run } */
/* { dg-options "-O2 -msse" } */
/* { dg-require-effective-target sse } */
#include "sse-check.h"
#include <xmmintrin.h>
#include <stddef.h>
#include <string.h>
static void
sse_test (void)
{
int alignment, n;
void *ptr;
int errors = 0;
const char test [] = "This is a test.";
for (alignment = 1; alignment <= (1 << 20); alignment += alignment)
{
ptr = _mm_malloc (alignment, alignment);
if (((ptrdiff_t) ptr) & (alignment - 1))
abort ();
if (ptr)
{
n = alignment > sizeof test ? sizeof test : alignment;
memcpy (ptr, test, n);
if (memcmp (ptr, test, n) != 0)
errors++;
_mm_free (ptr);
}
else
errors++;
}
if (errors != 0)
abort ();
}
|