diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:36:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:36:28 +0000 |
commit | 8a42586c54f6ec33b657d2c052740fdb52ce3a6c (patch) | |
tree | 457d3b7e94e51e302cb361e9029b43aeee644003 /clang/lib/Basic/SourceManager.cpp | |
parent | 3c91971b3391a6aa7f48ee11986813204006adf9 (diff) | |
download | bcm5719-llvm-8a42586c54f6ec33b657d2c052740fdb52ce3a6c.tar.gz bcm5719-llvm-8a42586c54f6ec33b657d2c052740fdb52ce3a6c.zip |
more SourceLocation lexicon change: instead of referring to the
"logical" location, refer to the "instantiation" location.
llvm-svn: 62316
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r-- | clang/lib/Basic/SourceManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp index 55e8c4aee78..fa0a9bb565a 100644 --- a/clang/lib/Basic/SourceManager.cpp +++ b/clang/lib/Basic/SourceManager.cpp @@ -155,8 +155,8 @@ SourceLocation SourceManager::getInstantiationLoc(SourceLocation SpellingLoc, // where the characters are actually located. SpellingLoc = getSpellingLoc(SpellingLoc); - // Resolve InstantLoc down to a real logical location. - InstantLoc = getLogicalLoc(InstantLoc); + // Resolve InstantLoc down to a real instantiation location. + InstantLoc = getInstantiationLoc(InstantLoc); // If the last macro id is close to the currently requested location, try to |