From 74cfb23d44de82f1932f0229b742805b0b3c3719 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 27 Aug 2011 17:54:32 +0000 Subject: [PATCH] Remove unused variables noticed by GCC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138707 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGException.cpp | 1 - lib/Serialization/ASTReader.cpp | 5 ----- 2 files changed, 6 deletions(-) diff --git a/lib/CodeGen/CGException.cpp b/lib/CodeGen/CGException.cpp index 0605f62b27..5d6f57247c 100644 --- a/lib/CodeGen/CGException.cpp +++ b/lib/CodeGen/CGException.cpp @@ -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 diff --git a/lib/Serialization/ASTReader.cpp b/lib/Serialization/ASTReader.cpp index c991cc0776..2817d86d36 100644 --- a/lib/Serialization/ASTReader.cpp +++ b/lib/Serialization/ASTReader.cpp @@ -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(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(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; -- 2.40.0