]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/llvm/tools/clang/include/clang/Basic/OpenCL.h
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / llvm / tools / clang / include / clang / Basic / OpenCL.h
1 //===--- OpenCL.h - OpenCL enums --------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file defines some OpenCL-specific enums.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_BASIC_OPENCL_H
15 #define LLVM_CLANG_BASIC_OPENCL_H
16
17 namespace clang {
18
19 /// Names for the OpenCL image access qualifiers (OpenCL 1.1 6.6).
20 enum OpenCLImageAccess {
21   CLIA_read_only = 1,
22   CLIA_write_only = 2,
23   CLIA_read_write = 3
24 };
25
26 }
27
28 #endif