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 | cdc0057e3ceb4c2d5b4477ddb9d30d0bf4ec6c1e (patch) | |
tree | 5c2cf3de3849954fd69465aa87c5aa904c5859b8 /clang/lib/Basic/SourceManager.cpp | |
parent | 6f832c57334e549cd277a09b4c2816bb3b895ec5 (diff) | |
download | bcm5719-llvm-cdc0057e3ceb4c2d5b4477ddb9d30d0bf4ec6c1e.tar.gz bcm5719-llvm-cdc0057e3ceb4c2d5b4477ddb9d30d0bf4ec6c1e.zip |
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.
llvm-svn: 158732
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r-- | clang/lib/Basic/SourceManager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 24bd51928c9..6ddc2880a05 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp @@ -407,7 +407,6 @@ SourceManager::~SourceManager() { void SourceManager::clearIDTables() { MainFileID = FileID(); - PredefinesFileID = FileID(); LocalSLocEntryTable.clear(); LoadedSLocEntryTable.clear(); SLocEntryLoaded.clear(); |