diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-26 00:43:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-26 00:43:02 +0000 |
commit | 4fa23625abb476ac89b84d06ee2a45ef822eaf15 (patch) | |
tree | 005a1b93adaf38a3e73ea0b512bafce88140568f /clang/lib/Lex/ScratchBuffer.cpp | |
parent | cf8e1fa58e25fbc49b2358994e5f83498aff5dd3 (diff) | |
download | bcm5719-llvm-4fa23625abb476ac89b84d06ee2a45ef822eaf15.tar.gz bcm5719-llvm-4fa23625abb476ac89b84d06ee2a45ef822eaf15.zip |
Check in the long promised SourceLocation rewrite. This lays the
ground work for implementing #line, and fixes the "out of macro ID's"
problem.
There is nothing particularly tricky about the code, other than the
very performance sensitive SourceManager::getFileID() method.
llvm-svn: 62978
Diffstat (limited to 'clang/lib/Lex/ScratchBuffer.cpp')
-rw-r--r-- | clang/lib/Lex/ScratchBuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/ScratchBuffer.cpp b/clang/lib/Lex/ScratchBuffer.cpp index bef81caac71..695a5365faf 100644 --- a/clang/lib/Lex/ScratchBuffer.cpp +++ b/clang/lib/Lex/ScratchBuffer.cpp @@ -50,7 +50,7 @@ SourceLocation ScratchBuffer::getToken(const char *Buf, unsigned Len) { SourceLocation ScratchBuffer::getToken(const char *Buf, unsigned Len, SourceLocation SourceLoc) { // Map the physloc to the specified sourceloc. - return SourceMgr.getInstantiationLoc(getToken(Buf, Len), SourceLoc); + return SourceMgr.createInstantiationLoc(getToken(Buf, Len), SourceLoc, Len); } void ScratchBuffer::AllocScratchBuffer(unsigned RequestLen) { |