diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-07-13 19:25:38 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-07-13 19:25:38 +0000 | 
| commit | 8746d127c04f5bbaf6c6e88cef8606ca5a6a54e9 (patch) | |
| tree | 84c9d77f8c764f04bcef0b1da4eedfa233d67a46 /lib/Lex | |
| parent | cf1b401909b5e54edfd80656b1a18eaa31f9f6f1 (diff) | |
Diffstat (limited to 'lib/Lex')
| -rw-r--r-- | lib/Lex/Lexer.cpp | 2 | ||||
| -rw-r--r-- | lib/Lex/PPLexerChange.cpp | 6 | ||||
| -rw-r--r-- | lib/Lex/Preprocessor.cpp | 2 | 
3 files changed, 3 insertions, 7 deletions
diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp index 012189aa6f9f..61bcef8cb760 100644 --- a/lib/Lex/Lexer.cpp +++ b/lib/Lex/Lexer.cpp @@ -2550,7 +2550,7 @@ bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) {      return true;    } -  if (PP->isRecordingPreamble() && !PP->isInMainFile()) { +  if (PP->isRecordingPreamble() && PP->isInPrimaryFile()) {      PP->setRecordedPreambleConditionalStack(ConditionalStack);      ConditionalStack.clear();    } diff --git a/lib/Lex/PPLexerChange.cpp b/lib/Lex/PPLexerChange.cpp index 1c0cd5636835..5a589d6a17b3 100644 --- a/lib/Lex/PPLexerChange.cpp +++ b/lib/Lex/PPLexerChange.cpp @@ -46,12 +46,6 @@ bool Preprocessor::isInPrimaryFile() const {    });  } -bool Preprocessor::isInMainFile() const { -  if (IsFileLexer()) -    return IncludeMacroStack.size() == 0; -  return true; -} -  /// getCurrentLexer - Return the current file lexer being lexed from.  Note  /// that this ignores any potentially active macro expansions and _Pragma  /// expansions going on at the time. diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index f9a399cd7fd7..63f39524d12a 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -535,7 +535,9 @@ void Preprocessor::EnterMainSourceFile() {    // Start parsing the predefines.    EnterSourceFile(FID, nullptr, SourceLocation()); +} +void Preprocessor::replayPreambleConditionalStack() {    // Restore the conditional stack from the preamble, if there is one.    if (PreambleConditionalStack.isReplaying()) {      CurPPLexer->setConditionalLevels(PreambleConditionalStack.getStack());  | 
