From 93e4865d4b3498077931d8dd85253964dff5cb32 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 15 Feb 2006 22:12:35 +0000 Subject: [PATCH] Remove an unused function parameter. llvm-svn: 26221 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 0f703eb0d6ba..766f84696890 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1505,7 +1505,7 @@ void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) { /// getMemsetValue - Vectorized representation of the memset value /// operand. static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT, - SelectionDAG &DAG, TargetLowering &TLI) { + SelectionDAG &DAG) { MVT::ValueType CurVT = VT; if (ConstantSDNode *C = dyn_cast(Value)) { uint64_t Val = C->getValue() & 255; @@ -1634,7 +1634,7 @@ void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) { for (unsigned i = 0; i < NumMemOps; i++) { MVT::ValueType VT = MemOps[i]; unsigned VTSize = getSizeInBits(VT) / 8; - SDOperand Value = getMemsetValue(Op2, VT, DAG, TLI); + SDOperand Value = getMemsetValue(Op2, VT, DAG); SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Value, getMemBasePlusOffset(Op1, Offset, DAG, TLI),