From 493e03851d630804830b0439f9a714b08638ab95 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 30 May 2008 00:56:36 +0000 Subject: [PATCH] Remove an unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51721 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 3290311df2b..a6268e73400 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1628,7 +1628,6 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { // process, no libcalls can/will be inserted, guaranteeing that no calls // can overlap. assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!"); - SDOperand InCallSEQ = LastCALLSEQ_END; // Note that we are selecting this call! LastCALLSEQ_END = SDOperand(CallEnd, 0); IsLegalizingCall = true;