summaryrefslogtreecommitdiffstats
path: root/test/SemaOpenCL/builtin.cl
blob: 4669e3fbb38126279cc6fbe47f716b7cb085f91f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -cl-std=CL1.2
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -cl-std=c++

// expected-no-diagnostics

float __attribute__((overloadable)) acos(float);

typedef float float4 __attribute__((ext_vector_type(4)));
int printf(__constant const char* st, ...);

void test(void)
{
  float4 a;
  printf("%8.4v4hlf\n", a);
}