[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Dec 22 16:50:36 PST 2005



Changes in directory llvm/lib/CodeGen/SelectionDAG:

LegalizeDAG.cpp updated: 1.243 -> 1.244
---
Log message:

fix a thinko in the bit_convert handling code


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

 LegalizeDAG.cpp |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.243 llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.244
--- llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.243	Thu Dec 22 18:16:34 2005
+++ llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp	Thu Dec 22 18:50:25 2005
@@ -2804,8 +2804,7 @@
   
   // Emit a store to the stack slot.
   SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
-                                SrcOp.getOperand(0), FIPtr, 
-                                DAG.getSrcValue(NULL));
+                                SrcOp, FIPtr, DAG.getSrcValue(NULL));
   // Result is a load from the stack slot.
   return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
 }






More information about the llvm-commits mailing list