aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr46419.c
blob: 3b722283ef328e6a2d535eba5d17c77ffbc308c9 (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
/* { dg-do run } */
/* { dg-options "-O2 -msse" } */
/* { dg-require-effective-target sse } */

#include "sse-check.h"

#include <xmmintrin.h>

void __attribute__((noinline))
sse_test (void)
{
  char image[4];
  __m128 image4;
  float out[4] __attribute__ ((aligned (16)));
  int i;

  for (i = 0; i < 4; i++)
    image[i] = i + 1;

  image4 =
    _mm_cvtpi8_ps (_mm_setr_pi8
		   (image[0], image[1], image[2], image[3], 0, 0, 0, 0));
  _mm_store_ps (out, image4);
  _mm_empty ();

  for (i = 0; i < 4; i++)
    if (out[i] != (float) (i + 1))
      abort ();

  image4 =
    _mm_cvtpu8_ps (_mm_setr_pi8
		   (image[0], image[1], image[2], image[3], 0, 0, 0, 0));
  _mm_store_ps (out, image4);
  _mm_empty ();

  for (i = 0; i < 4; i++)
    if (out[i] != (float) (i + 1))
      abort ();
}