]> granicus.if.org Git - clang/commitdiff
Two variables had been added for an assert, but their values were
authorChandler Carruth <chandlerc@gmail.com>
Sun, 15 Jan 2012 09:03:45 +0000 (09:03 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sun, 15 Jan 2012 09:03:45 +0000 (09:03 +0000)
re-computed rather than the variables be re-used just after the assert.
Just use the variables since we have them already. Fixes an unused
variable warning.

Also fix an 80-column violation.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148212 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/Lexer.cpp

index d3a97b42b1917e6a00cf4e0d32431ecb7a51ee05..c320b3c222e0cb8f69689fd91ac4cc9cb4b02f0e 100644 (file)
@@ -489,11 +489,11 @@ SourceLocation Lexer::GetBeginningOfToken(SourceLocation Loc,
  SourceLocation FileLoc = SM.getSpellingLoc(Loc);
  SourceLocation BeginFileLoc = getBeginningOfFileToken(FileLoc, SM, LangOpts);
  std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(FileLoc);
- std::pair<FileID, unsigned> BeginFileLocInfo= SM.getDecomposedLoc(BeginFileLoc);
+ std::pair<FileID, unsigned> BeginFileLocInfo
+   = SM.getDecomposedLoc(BeginFileLoc);
  assert(FileLocInfo.first == BeginFileLocInfo.first &&
         FileLocInfo.second >= BeginFileLocInfo.second);
- return Loc.getLocWithOffset(SM.getDecomposedLoc(BeginFileLoc).second -
-                                 SM.getDecomposedLoc(FileLoc).second);
+ return Loc.getLocWithOffset(BeginFileLocInfo.second - FileLocInfo.second);
 }
 
 namespace {