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

Chris Lattner lattner at cs.uiuc.edu
Sun May 8 21:08:47 PDT 2005



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.47 -> 1.48
---
Log message:

wrap long lines


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

 SelectionDAGISel.cpp |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.47 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.48
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.47	Thu May  5 12:55:17 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Sun May  8 23:08:33 2005
@@ -623,7 +623,8 @@
     Root = DAG.getRoot();
   }
 
-  SDOperand L = DAG.getLoad(TLI.getValueType(I.getType()), Root, Ptr, DAG.getSrcValue(&I));
+  SDOperand L = DAG.getLoad(TLI.getValueType(I.getType()), Root, Ptr,
+                            DAG.getSrcValue(&I));
   setValue(&I, L);
 
   if (I.isVolatile())
@@ -638,7 +639,8 @@
   SDOperand Src = getValue(SrcV);
   SDOperand Ptr = getValue(I.getOperand(1));
   //  DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr));
-  DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr, DAG.getSrcValue(&I)));
+  DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
+                          DAG.getSrcValue(&I)));
 }
 
 void SelectionDAGLowering::visitCall(CallInst &I) {






More information about the llvm-commits mailing list