Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.132 -> 1.133
---
Log message:

Add getStore() helper function to create ISD::STORE nodes.

---
Diffs of the changes:  (+5 -0)

 SelectionDAG.h |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.132 
llvm/include/llvm/CodeGen/SelectionDAG.h:1.133
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.132      Tue Oct  3 19:50:21 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h    Thu Oct  5 17:54:31 2006
@@ -307,6 +307,11 @@
                        SDOperand Chain, SDOperand Ptr, SDOperand SV,
                        MVT::ValueType EVT);
 
+  /// getStore - Helper function to build ISD::STORE nodes.
+  ///
+  SDOperand getStore(SDOperand Chain, SDOperand Value, SDOperand Ptr,
+                     SDOperand SV);
+
   // getSrcValue - construct a node to track a Value* through the backend
   SDOperand getSrcValue(const Value* I, int offset = 0);
 



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to