diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-25 01:50:47 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-25 01:50:47 +0000 |
commit | eab6652b7e417c8e46b21c7d340f3a7d41492d6e (patch) | |
tree | 3e2f104740f78d0e0fc07f3521c55043b1c3a570 /lib/Serialization/ASTWriter.cpp | |
parent | 5c4e34c16782927ecfeb5f005d65b68e77f5435a (diff) |
[Frontend] Remove another IsUserSpecified member variable that is now unused.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173412 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 2f9e1543c2..5a690b3ded 100644 --- a/lib/Serialization/ASTWriter.cpp +++ b/lib/Serialization/ASTWriter.cpp @@ -1111,7 +1111,6 @@ void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context, const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; AddString(Entry.Path, Record); Record.push_back(static_cast<unsigned>(Entry.Group)); - Record.push_back(Entry.IsUserSupplied); Record.push_back(Entry.IsFramework); Record.push_back(Entry.IgnoreSysRoot); Record.push_back(Entry.IsInternal); |