diff options
author | Meador Inge <meadori@codesourcery.com> | 2012-06-19 18:17:30 +0000 |
---|---|---|
committer | Meador Inge <meadori@codesourcery.com> | 2012-06-19 18:17:30 +0000 |
commit | 9416d42468eacaae0ea85ab8ed134f5df1a1d142 (patch) | |
tree | 38bb09ff9453e85f58ee314cf76886c9c957662e /lib/Basic/SourceManager.cpp | |
parent | b5aa17c5a118d371db49eb0af8866829b1aff678 (diff) |
Revert predefined decl tracking.
r158085 added some logic to track predefined declarations. The main reason we
had predefined declarations in the input was because the __builtin_va_list
declarations were injected into the preprocessor input. As of r158592 we
explicitly build the __builtin_va_list declarations. Therefore the predefined
decl tracking is no longer needed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158732 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/SourceManager.cpp')
-rw-r--r-- | lib/Basic/SourceManager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Basic/SourceManager.cpp b/lib/Basic/SourceManager.cpp index 24bd51928c..6ddc2880a0 100644 --- a/lib/Basic/SourceManager.cpp +++ b/lib/Basic/SourceManager.cpp @@ -407,7 +407,6 @@ SourceManager::~SourceManager() { void SourceManager::clearIDTables() { MainFileID = FileID(); - PredefinesFileID = FileID(); LocalSLocEntryTable.clear(); LoadedSLocEntryTable.clear(); SLocEntryLoaded.clear(); |