Index: cfe/trunk/lib/AST/Decl.cpp =================================================================== --- cfe/trunk/lib/AST/Decl.cpp +++ cfe/trunk/lib/AST/Decl.cpp @@ -2732,6 +2732,12 @@ if (getStorageClass() == SC_Static) return 0; + // OpenCL v1.2 s6.9.f - The library functions defined in + // the C99 standard headers are not available. + if (Context.getLangOpts().OpenCL && + Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) + return 0; + return BuiltinID; } Index: cfe/trunk/test/SemaOpenCL/builtin.cl =================================================================== --- cfe/trunk/test/SemaOpenCL/builtin.cl +++ cfe/trunk/test/SemaOpenCL/builtin.cl @@ -1,3 +1,14 @@ // RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -float __attribute__((overloadable)) acos(float); // expected-no-diagnostics +// 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); +}