diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-08-11 17:46:44 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-08-11 17:46:44 +0000 |
| commit | 1727253e035b98c3c598f69f77048281afa9c490 (patch) | |
| tree | da8f66093ceaf392493a82d5b933a45247dbba5a | |
| parent | a2f40868287ec9362f5d9f29c99d5458df87404c (diff) | |
| download | bcm5719-llvm-1727253e035b98c3c598f69f77048281afa9c490.tar.gz bcm5719-llvm-1727253e035b98c3c598f69f77048281afa9c490.zip | |
Change one ReplaceAllUsesWith method to take an array of operands to replaceinstead of a vector of operands.
llvm-svn: 29617
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAG.h b/llvm/include/llvm/CodeGen/SelectionDAG.h index aee44b34514..e818a064850 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAG.h +++ b/llvm/include/llvm/CodeGen/SelectionDAG.h @@ -393,7 +393,7 @@ public: 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 |

