From: Richard Smith Date: Thu, 22 Oct 2015 04:42:51 +0000 (+0000) Subject: [coroutines] Fix description of LangOption for coroutines. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc9dc0ac4b2e2abecf2f6d7686d6fa6d616510e0;p=clang [coroutines] Fix description of LangOption for coroutines. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250984 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/LangOptions.def b/include/clang/Basic/LangOptions.def index 538ae480cf..a465f28e8a 100644 --- a/include/clang/Basic/LangOptions.def +++ b/include/clang/Basic/LangOptions.def @@ -118,7 +118,7 @@ LANGOPT(Freestanding, 1, 0, "freestanding implementation") LANGOPT(NoBuiltin , 1, 0, "disable builtin functions") LANGOPT(NoMathBuiltin , 1, 0, "disable math builtin functions") LANGOPT(GNUAsm , 1, 1, "GNU-style inline assembly") -LANGOPT(Coroutines , 1, 0, "C++ coroutines TS") +LANGOPT(Coroutines , 1, 0, "C++ coroutines") BENIGN_LANGOPT(ThreadsafeStatics , 1, 1, "thread-safe static initializers") LANGOPT(POSIXThreads , 1, 0, "POSIX thread support")