From: Zachary Turner Date: Fri, 13 Feb 2015 18:11:49 +0000 (+0000) Subject: Fix -Wunused-variable warning. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c208d61bcb37125ba747dafc8e9ae1ed06d0cd34;p=oota-llvm.git Fix -Wunused-variable warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229130 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/PDB/PDBSymbolFunc.cpp b/lib/DebugInfo/PDB/PDBSymbolFunc.cpp index 0195ce35ab0..c350f8f89c1 100644 --- a/lib/DebugInfo/PDB/PDBSymbolFunc.cpp +++ b/lib/DebugInfo/PDB/PDBSymbolFunc.cpp @@ -55,7 +55,6 @@ void PDBSymbolFunc::dump(raw_ostream &OS, int Indent, OS << "(FPO)"; OS << " "; - uint32_t FuncSigId = getTypeId(); if (auto FuncSig = getSignature()) { // If we have a signature, dump the name with the signature. if (auto ReturnType = FuncSig->getReturnType()) {