aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/sse2-movmskpd-1.c
blob: cef6f8d72af4ad4aa65c1475c18c96be8044e295 (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
39
40
41
42
43
44
/* { dg-do run } */
/* { dg-options "-O2 -msse2" } */

#ifndef CHECK_H
#define CHECK_H "sse2-check.h"
#endif

#ifndef TEST
#define TEST sse2_test
#endif

#include CHECK_H

#include <emmintrin.h>

static int
__attribute__((noinline, unused))
test (__m128d p)
{
  return _mm_movemask_pd (p); 
}

static void
TEST (void)
{
  double source[2] = {1.234, -2234.23};
  union128d s1;
  int d;
  int e;

  s1.x = _mm_loadu_pd (source);

  d = test (s1.x);

  e = 0;
  if (source[0] < 0)
    e |= 1;
  
  if (source[1] < 0)
    e |= 1 << 1;

  if (checkVi (&d, &e, 1))
    abort ();  
}