Remove unused variable.

llvm-svn: 220738
This commit is contained in:
Richard Smith 2014-10-27 23:25:15 +00:00
parent cf7a4a2660
commit 79c98cc9fc
1 changed files with 1 additions and 2 deletions

View File

@ -4314,8 +4314,7 @@ bool ASTReader::readASTFileControlBlock(StringRef Filename,
unsigned Idx = 0, N = Record.size();
while (Idx < N) {
// Read information about the AST file.
ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
Idx += 4; // ImportLoc, Size, ModTime, Signature
Idx += 5; // ImportLoc, Size, ModTime, Signature
unsigned Length = Record[Idx++];
SmallString<128> ImportedFile(Record.begin() + Idx,
Record.begin() + Idx + Length);