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/ASTWriter.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/ASTWriter.cpp')
-rw-r--r-- | lib/Serialization/ASTWriter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Serialization/ASTWriter.cpp b/lib/Serialization/ASTWriter.cpp index d398153324..0499f5c6f4 100644 --- a/lib/Serialization/ASTWriter.cpp +++ b/lib/Serialization/ASTWriter.cpp @@ -1115,7 +1115,6 @@ void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context, Record.push_back(Entry.IsFramework); Record.push_back(Entry.IgnoreSysRoot); Record.push_back(Entry.IsInternal); - Record.push_back(Entry.ImplicitExternC); } // System header prefixes. |