From d49b12041419709a0690667ce1e2b5e9b9a11610 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 21 May 2004 18:38:16 +0000 Subject: [PATCH] It's not clear to me whether the old version was correct C++ code, but in any case it's not portable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13621 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Dominators.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index b2533a16aea..736e5083f64 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -365,9 +365,9 @@ public: /// changeImmediateDominator - This method is used to update the dominator /// tree information when a node's immediate dominator changes. /// - void changeImmediateDominator(Node *Node, Node *NewIDom) { - assert(Node && NewIDom && "Cannot change null node pointers!"); - Node->setIDom(NewIDom); + void changeImmediateDominator(Node *N, Node *NewIDom) { + assert(N && NewIDom && "Cannot change null node pointers!"); + N->setIDom(NewIDom); } /// print - Convert to human readable form -- 2.34.1