diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:00:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:00:02 +0000 |
commit | 53e384f6335f5b361d838ab5032cb13d262023e4 (patch) | |
tree | 273027c121ac46cea71e2d421c267a670e4e5ef9 /clang/lib/Lex/PreprocessorLexer.cpp | |
parent | 2d9e40ed2481b3fc34c747841e5c926b7c67308a (diff) | |
download | bcm5719-llvm-53e384f6335f5b361d838ab5032cb13d262023e4.tar.gz bcm5719-llvm-53e384f6335f5b361d838ab5032cb13d262023e4.zip |
Change some terminology in SourceLocation: instead of referring to
the "physical" location of tokens, refer to the "spelling" location.
This is more concrete and useful, tokens aren't really physical objects!
llvm-svn: 62309
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 5b3538a45b1..07329e0cc78 100644 --- a/clang/lib/Lex/PreprocessorLexer.cpp +++ b/clang/lib/Lex/PreprocessorLexer.cpp @@ -18,7 +18,7 @@ using namespace clang; PreprocessorLexer::PreprocessorLexer(Preprocessor* pp, SourceLocation L) - : PP(pp), FileID(pp->getSourceManager().getPhysicalLoc(L).getFileID()), + : PP(pp), FileID(pp->getSourceManager().getSpellingLoc(L).getFileID()), ParsingPreprocessorDirective(false), ParsingFilename(false), LexingRawMode(false) {} |