aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/spu/intrinsics-3.c
blob: 3d3946641028ff885a083cfa18eb2eac209afa70 (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
/* { dg-do compile } */
#include <spu_intrinsics.h>
void f0 (vec_uint4 *in)
{
  vec_float4 out = spu_convtf (in[0], 128); /* { dg-error "expects an integer literal in the range" "0, 127"  }*/
}

void f1 (vec_int4 *in)
{
  vec_float4 out = spu_convtf (in[0], 128); /* { dg-error "expects an integer literal in the range" "0, 127"  }*/
}

void f2 (vec_float4 *in)
{
  vec_int4 out = spu_convts (in[0], 128); /* { dg-error "expects an integer literal in the range" "0, 127"  }*/
}

void f3 (vec_float4 *in)
{
  vec_uint4 out = spu_convtu (in[0], 128); /* { dg-error "expects an integer literal in the range" "0, 127"  }*/
}

/* Test that these intrinsics accept non-literal arguments */
void f4 (vec_uint4 *in, int n)
{
  vec_float4 out = spu_convtf (in[0], n); 
}

void f5 (vec_int4 *in, int n)
{
  vec_float4 out = spu_convtf (in[0], n);
}

void f6 (vec_float4 *in, int n)
{
  vec_int4 out = spu_convts (in[0], n);
}

void f7 (vec_float4 *in, int n)
{
  vec_uint4 out = spu_convtu (in[0], n);
}