[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h
Evan Cheng
evan.cheng at apple.com
Thu Oct 5 15:54:46 PDT 2006
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);
More information about the llvm-commits
mailing list