summaryrefslogtreecommitdiffstats
path: root/test/SemaOpenCL/extension-fp64.cl
blob: eaf2509502f2459fb452e8c5870852ba3e68b4c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only

void f1(double da) { // expected-error {{requires cl_khr_fp64 extension}}
  double d; // expected-error {{requires cl_khr_fp64 extension}}
}

#pragma OPENCL EXTENSION cl_khr_fp64 : enable

void f2(void) {
  double d;
}

#pragma OPENCL EXTENSION cl_khr_fp64 : disable

void f3(void) {
  double d; // expected-error {{requires cl_khr_fp64 extension}}
}
OpenPOWER on IntegriCloud