From 4b31a2a7cea770b51a97ca3801b154ce46efb5f9 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 1 Sep 2008 13:11:13 +0000 Subject: [PATCH] Even though no caller actually uses the new value (what matters is that it is added to the worklist), it seems more logical to return it. llvm-svn: 55606 --- llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h b/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h index d8cbf78e46da..5780021f90a9 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h @@ -155,10 +155,11 @@ public: /// ReanalyzeNode - Recompute the NodeID and correct processed operands /// for the specified node, adding it to the worklist if ready. - void ReanalyzeNode(SDNode *N) { + SDNode *ReanalyzeNode(SDNode *N) { N->setNodeId(NewNode); SDValue V(N, 0); AnalyzeNewNode(V); // FIXME: ignore the change? + return V.getNode(); } void NoteDeletion(SDNode *Old, SDNode *New) {