diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-25 22:54:01 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-25 22:54:01 +0000 |
commit | b5af843a20e237ad1a13ad66a867e200695b8c8e (patch) | |
tree | ff9eb4992d4c446cb385a831ba1f25632d80575f /include/clang-c | |
parent | 9293ba8e26fcba18505b273ecc9b66645133fcce (diff) |
Eliminate the -chained-pch flag and all of the frontend and libclang options associated with it. Chained PCH is the only way to build a PCH file that includes another PCH file
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138597 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r-- | include/clang-c/Index.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index e16a21ef35..7c32250438 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -824,18 +824,18 @@ enum CXTranslationUnit_Flags { */ CXTranslationUnit_CacheCompletionResults = 0x08, /** - * \brief Enable precompiled preambles in C++. + * \brief DEPRECATED: Enable precompiled preambles in C++. * * Note: this is a *temporary* option that is available only while - * we are testing C++ precompiled preamble support. + * we are testing C++ precompiled preamble support. It is deprecated. */ CXTranslationUnit_CXXPrecompiledPreamble = 0x10, /** - * \brief Enabled chained precompiled preambles in C++. + * \brief DEPRECATED: Enabled chained precompiled preambles in C++. * * Note: this is a *temporary* option that is available only while - * we are testing C++ precompiled preamble support. + * we are testing C++ precompiled preamble support. It is deprecated. */ CXTranslationUnit_CXXChainedPCH = 0x20, |