diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-11-19 22:55:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-11-19 22:55:25 +0000 |
commit | 2861cf42fe10490ffba2201ce66fa271d1bd3750 (patch) | |
tree | 8e6e5b966b2f8a270ddc61af1e07a209ccd3982d /clang/lib/Lex/PPMacroExpansion.cpp | |
parent | a2c3c8d71cea0595f860e144f92970a1a37e5f0e (diff) | |
download | bcm5719-llvm-2861cf42fe10490ffba2201ce66fa271d1bd3750.tar.gz bcm5719-llvm-2861cf42fe10490ffba2201ce66fa271d1bd3750.zip |
Use PreprocessorLexer::getFileID() instead of Lexer::getFileLoc(). This is an intermediate step to having getCurrentLexer() return a PreprocessorLexer* instead of a Lexer*.
llvm-svn: 59672
Diffstat (limited to 'clang/lib/Lex/PPMacroExpansion.cpp')
-rw-r--r-- | clang/lib/Lex/PPMacroExpansion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/PPMacroExpansion.cpp b/clang/lib/Lex/PPMacroExpansion.cpp index 53e1f8dc710..24a9b41a38a 100644 --- a/clang/lib/Lex/PPMacroExpansion.cpp +++ b/clang/lib/Lex/PPMacroExpansion.cpp @@ -513,7 +513,7 @@ void Preprocessor::ExpandBuiltinMacro(Token &Tok) { Lexer *TheLexer = getCurrentFileLexer(); if (TheLexer) - CurFile = SourceMgr.getFileEntryForLoc(TheLexer->getFileLoc()); + CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID()); // If this file is older than the file it depends on, emit a diagnostic. const char *Result; |