diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-15 18:05:10 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-15 18:05:10 +0000 |
commit | f60e9918690fcf02974bc1ebecd42c99d561855e (patch) | |
tree | c0cee978d4b0ad59d55c7acf821d38133a9fce6e /lib/Frontend/PCHReader.cpp | |
parent | 1f0d0133b0e8d1f01f63951ee04927796b34740d (diff) |
For source location entries that describe instantiations, encode the
token length in the PCH file rather than trying (and failing) to
reconstruct it be getting the spelling token's length.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 083d0d6082..5a01aee8b8 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -612,9 +612,7 @@ PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() { SpellingLoc, SourceLocation::getFromRawEncoding(Record[2]), SourceLocation::getFromRawEncoding(Record[3]), - Lexer::MeasureTokenLength(SpellingLoc, - SourceMgr, - PP.getLangOptions())); + Record[4]); break; } |