diff options
author | Steve Naroff <snaroff@apple.com> | 2009-04-24 20:03:17 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-04-24 20:03:17 +0000 |
commit | 3fa455a1aad9ec64de07e889f5a40cf2a7e06348 (patch) | |
tree | 019245664bc2410d34fe17ee2008f9d1be02255b /clang/lib/Lex/PPLexerChange.cpp | |
parent | 53c5b7e0bd2d2000339aa6856e75b98235e7edf9 (diff) | |
download | bcm5719-llvm-3fa455a1aad9ec64de07e889f5a40cf2a7e06348.tar.gz bcm5719-llvm-3fa455a1aad9ec64de07e889f5a40cf2a7e06348.zip |
Add PCH support for #import.
llvm-svn: 69987
Diffstat (limited to 'clang/lib/Lex/PPLexerChange.cpp')
-rw-r--r-- | clang/lib/Lex/PPLexerChange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/PPLexerChange.cpp b/clang/lib/Lex/PPLexerChange.cpp index 6f61c6516b3..2a05ba336fc 100644 --- a/clang/lib/Lex/PPLexerChange.cpp +++ b/clang/lib/Lex/PPLexerChange.cpp @@ -179,7 +179,7 @@ bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { if (CurPPLexer) { // Not ending a macro, ignore it. if (const IdentifierInfo *ControllingMacro = CurPPLexer->MIOpt.GetControllingMacroAtEndOfFile()) { - // Okay, this has a controlling macro, remember in PerFileInfo. + // Okay, this has a controlling macro, remember in HeaderFileInfo. if (const FileEntry *FE = SourceMgr.getFileEntryForID(CurPPLexer->getFileID())) HeaderInfo.SetFileControllingMacro(FE, ControllingMacro); |