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

Chris Lattner lattner at cs.uiuc.edu
Fri Aug 11 10:46:58 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.113 -> 1.114
---
Log message:

Change one ReplaceAllUsesWith method to take an array of operands to replaceinstead of a vector of operands.



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

 SelectionDAG.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.113 llvm/include/llvm/CodeGen/SelectionDAG.h:1.114
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.113	Fri Aug 11 12:40:26 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h	Fri Aug 11 12:46:44 2006
@@ -393,7 +393,7 @@
                           std::vector<SDNode*> *Deleted = 0);
   void ReplaceAllUsesWith(SDNode *From, SDNode *To,
                           std::vector<SDNode*> *Deleted = 0);
-  void ReplaceAllUsesWith(SDNode *From, const std::vector<SDOperand> &To,
+  void ReplaceAllUsesWith(SDNode *From, const SDOperand *To,
                           std::vector<SDNode*> *Deleted = 0);
 
   /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving






More information about the llvm-commits mailing list