From 10077194ece7fe7201a4a35b1e93a74112aae60a Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Thu, 18 Aug 2011 08:13:18 +0000 Subject: [PATCH] Remove unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137933 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AsmParser/LLParser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index c865afd915b..395d684c3de 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -3519,7 +3519,6 @@ int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) { bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) { Type *Ty = 0; LocTy TyLoc; Value *PersFn; LocTy PersFnLoc; - LocTy LPLoc = Lex.getLoc(); if (ParseType(Ty, TyLoc) || ParseToken(lltok::kw_personality, "expected 'personality'") ||