diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-11-13 19:12:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-11-13 19:12:37 +0000 |
commit | cf3f2c49eaca66d0d2568ce7711b370fcf0f8bb0 (patch) | |
tree | 29a19faada85890ab99302edd0de46dc9738e095 /clang/lib/Lex/PreprocessorLexer.cpp | |
parent | e9322ce61a763212da2efd9ec5674e892fdd1b77 (diff) | |
download | bcm5719-llvm-cf3f2c49eaca66d0d2568ce7711b370fcf0f8bb0.tar.gz bcm5719-llvm-cf3f2c49eaca66d0d2568ce7711b370fcf0f8bb0.zip |
Revert r167801, "[preprocessor] When #including something that contributes no
tokens at all,". This change broke External/Nurbs in LLVM test-suite.
llvm-svn: 167858
Diffstat (limited to 'clang/lib/Lex/PreprocessorLexer.cpp')
-rw-r--r-- | clang/lib/Lex/PreprocessorLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/PreprocessorLexer.cpp b/clang/lib/Lex/PreprocessorLexer.cpp index 390d4c4523b..a64c84d6bbd 100644 --- a/clang/lib/Lex/PreprocessorLexer.cpp +++ b/clang/lib/Lex/PreprocessorLexer.cpp @@ -22,7 +22,7 @@ void PreprocessorLexer::anchor() { } PreprocessorLexer::PreprocessorLexer(Preprocessor *pp, FileID fid) : PP(pp), FID(fid), InitialNumSLocEntries(0), ParsingPreprocessorDirective(false), - ParsingFilename(false), LexingRawMode(false), EnableIncludedEOF(false) { + ParsingFilename(false), LexingRawMode(false) { if (pp) InitialNumSLocEntries = pp->getSourceManager().local_sloc_entry_size(); } |