Remove unused variables noticed by GCC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138707 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2011-08-27 17:54:32 +00:00
Родитель 6be16fe900
Коммит 74cfb23d44
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -477,7 +477,6 @@ static void emitFilterDispatchBlock(CodeGenFunction &CGF,
return;
}
CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
CGF.EmitBlockAfterUses(dispatchBlock);
// If this isn't a catch-all filter, we need to check whether we got

Просмотреть файл

@ -528,7 +528,6 @@ ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
unsigned NumFactoryMethods = ReadUnalignedLE16(d);
// Load instance methods
ObjCMethodList *Prev = 0;
for (unsigned I = 0; I != NumInstanceMethods; ++I) {
if (ObjCMethodDecl *Method
= Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
@ -536,7 +535,6 @@ ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
}
// Load factory methods
Prev = 0;
for (unsigned I = 0; I != NumFactoryMethods; ++I) {
if (ObjCMethodDecl *Method
= Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
@ -1753,7 +1751,6 @@ ASTReader::ReadASTBlock(Module &F) {
// Read all of the records and blocks for the ASt file.
RecordData Record;
bool First = true;
while (!Stream.AtEndOfStream()) {
unsigned Code = Stream.ReadCode();
if (Code == llvm::bitc::END_BLOCK) {
@ -1827,7 +1824,6 @@ ASTReader::ReadASTBlock(Module &F) {
}
break;
}
First = false;
continue;
}
@ -2468,7 +2464,6 @@ ASTReader::ReadASTBlock(Module &F) {
KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
break;
}
First = false;
}
Error("premature end of bitstream in AST file");
return Failure;