blob: d6d541658a18e847e030f7c65243fd8c7dd99e32 [file] [log] [blame]
Yaxun Liu39cf40f2016-05-16 17:06:34 +00001// RUN: %clang_cc1 -emit-pch -o %t %s -triple spir-unknown-unknown
2// RUN: %clang_cc1 -include-pch %t -fsyntax-only %s -triple spir-unknown-unknown
Peter Collingbourne5df20e02011-02-15 19:46:30 +00003
4#ifndef HEADER
5#define HEADER
6// Header.
7
8#pragma OPENCL EXTENSION cl_khr_fp64 : enable
9
10#else
11// Using the header.
12
13void test(void) {
14 double d;
15}
16
17#endif