diff options
Diffstat (limited to 'include/clang/Frontend/LangStandards.def')
-rw-r--r-- | include/clang/Frontend/LangStandards.def | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Frontend/LangStandards.def b/include/clang/Frontend/LangStandards.def index 06fe1a3350ce..425ac84bf6ff 100644 --- a/include/clang/Frontend/LangStandards.def +++ b/include/clang/Frontend/LangStandards.def @@ -142,16 +142,16 @@ LANGSTANDARD(gnucxx1z, "gnu++1z", // OpenCL LANGSTANDARD(opencl, "cl", "OpenCL 1.0", - LineComment | C99 | Digraphs | HexFloat) + LineComment | C99 | Digraphs | HexFloat | OpenCL) LANGSTANDARD(opencl11, "cl1.1", "OpenCL 1.1", - LineComment | C99 | Digraphs | HexFloat) + LineComment | C99 | Digraphs | HexFloat | OpenCL) LANGSTANDARD(opencl12, "cl1.2", "OpenCL 1.2", - LineComment | C99 | Digraphs | HexFloat) + LineComment | C99 | Digraphs | HexFloat | OpenCL) LANGSTANDARD(opencl20, "cl2.0", "OpenCL 2.0", - LineComment | C99 | Digraphs | HexFloat) + LineComment | C99 | Digraphs | HexFloat | OpenCL) LANGSTANDARD_ALIAS(opencl, "CL") LANGSTANDARD_ALIAS(opencl11, "CL1.1") |