aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ocu-vector.c
blob: 1c20535a58c993971133d034da3bec16b6cc5c74 (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
// RUN: clang -emit-llvm %s

typedef __attribute__(( ocu_vector_type(4) )) float float4;
//typedef __attribute__(( ocu_vector_type(3) )) float float3;
typedef __attribute__(( ocu_vector_type(2) )) float float2;


float4 test1(float4 V) {
  return V.wzyx+V;
}

float2 vec2, vec2_2;
float4 vec4, vec4_2;
float f;

static void test2() {
    vec2 = vec4.rg;  // shorten
    f = vec2.x;      // extract elt
    vec4 = vec4.yyyy;  // splat
    
    vec2.x = f;      // insert one.
    vec2.yx = vec2; // reverse
}