You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
// RUN: %clang_cc1 -emit-pch -o %t %s -triple spir-unknown-unknown
|
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only %s -triple spir-unknown-unknown
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
// Header.
|
|
|
|
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
|
|
|
|
#else
|
|
// Using the header.
|
|
|
|
void test(void) {
|
|
double d;
|
|
}
|
|
|
|
#endif
|