[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCISelLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 20 14:37:35 PST 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCISelLowering.cpp updated: 1.105 -> 1.106
---
Log message:

remove dead variable


---
Diffs of the changes:  (+1 -1)

 PPCISelLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.105 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.106
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.105	Mon Mar 20 12:26:51 2006
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp	Mon Mar 20 16:37:23 2006
@@ -598,9 +598,9 @@
     SDOperand FIdx = DAG.getFrameIndex(FrameIdx, MVT::i32);
     
     // Store the input value into Value#0 of the stack slot.
-    unsigned InSize = MVT::getSizeInBits(Op.getOperand(0).getValueType())/8;
     SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
                                   Op.getOperand(0), FIdx,DAG.getSrcValue(NULL));
+    // LVE_X it out.
     return DAG.getNode(PPCISD::LVE_X, Op.getValueType(), Store, FIdx, 
                        DAG.getSrcValue(NULL));
   }






More information about the llvm-commits mailing list