diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 00:19:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 00:19:24 +0000 |
commit | ef84554239d77cc52a14b42f2bff8c2d02e7630e (patch) | |
tree | 3ac01de517c6bccbe3b5dbab215bcdae76e0c021 /lib/Serialization/ASTReader.cpp | |
parent | 4b1a0e4ab6648894c63bffe8564a669c1df3d683 (diff) |
[Frontend] Add an ExternCSystem include entry group.
- The only group where it makes sense for the "ExternC" bit is System, so this
simplifies having to have the extra isCXXAware (or ImplicitExternC, depending
on what code you talk to) bit caried around.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization/ASTReader.cpp')
-rw-r--r-- | lib/Serialization/ASTReader.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Serialization/ASTReader.cpp b/lib/Serialization/ASTReader.cpp index 8a8f6a2cfe..c07e1e9982 100644 --- a/lib/Serialization/ASTReader.cpp +++ b/lib/Serialization/ASTReader.cpp @@ -3692,10 +3692,9 @@ bool ASTReader::ParseHeaderSearchOptions(const RecordData &Record, bool IsFramework = Record[Idx++]; bool IgnoreSysRoot = Record[Idx++]; bool IsInternal = Record[Idx++]; - bool ImplicitExternC = Record[Idx++]; HSOpts.UserEntries.push_back( HeaderSearchOptions::Entry(Path, Group, IsFramework, IgnoreSysRoot, - IsInternal, ImplicitExternC)); + IsInternal)); } // System header prefixes. |