From 53cdb2f2b0b29a09cf70ad3f9188042fd183c302 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 May 2006 18:06:45 +0000 Subject: [PATCH] Remove dead vars llvm-svn: 28255 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 6e24ad420507..65944db1a965 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1199,7 +1199,6 @@ void SelectionDAGLowering::visitShuffleVector(User &I) { void SelectionDAGLowering::visitGetElementPtr(User &I) { SDOperand N = getValue(I.getOperand(0)); const Type *Ty = I.getOperand(0)->getType(); - const Type *UIntPtrTy = TD->getIntPtrType(); for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); OI != E; ++OI) { @@ -3456,7 +3455,6 @@ SelectInlineAsmMemoryOperands(std::vector &Ops, SelectionDAG &DAG) { Ops.push_back(InOps[0]); // input chain. Ops.push_back(InOps[1]); // input asm string. - const char *AsmStr = cast(InOps[1])->getSymbol(); unsigned i = 2, e = InOps.size(); if (InOps[e-1].getValueType() == MVT::Flag) --e; // Don't process a flag operand if it is here.