[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 29 15:00:11 PDT 2005



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.55 -> 1.56
---
Log message:

Add a new API for nate


---
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.55 llvm/include/llvm/CodeGen/SelectionDAG.h:1.56
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.55	Fri Aug 26 13:35:58 2005
+++ llvm/include/llvm/CodeGen/SelectionDAG.h	Mon Aug 29 17:00:00 2005
@@ -287,6 +287,11 @@
   void ReplaceAllUsesWith(SDNode *From, SDNode *To);
   void ReplaceAllUsesWith(SDNode *From, const std::vector<SDOperand> &To);
   
+  
+  /// DeleteNode - Remove the specified node from the system.  This node must
+  /// have no referrers.
+  void DeleteNode(SDNode *N);
+  
   void dump() const;
 
 private:






More information about the llvm-commits mailing list