diff options
Diffstat (limited to 'test/SemaOpenCL/optional-core-fp64-cl1.2.cl')
-rw-r--r-- | test/SemaOpenCL/optional-core-fp64-cl1.2.cl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/SemaOpenCL/optional-core-fp64-cl1.2.cl b/test/SemaOpenCL/optional-core-fp64-cl1.2.cl new file mode 100644 index 000000000000..e0f7f1db4ff1 --- /dev/null +++ b/test/SemaOpenCL/optional-core-fp64-cl1.2.cl @@ -0,0 +1,20 @@ +// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -cl-std=CL1.2 +// expected-no-diagnostics + +void f1(double da) { + double d; + (void) 1.0; +} + +#pragma OPENCL EXTENSION cl_khr_fp64 : enable + +void f2(void) { + double d; + (void) 1.0; +} + +#pragma OPENCL EXTENSION cl_khr_fp64 : disable + +void f3(void) { + double d; +} |