From 879d90f23cbef7bc61b54ee4f9bbf131aae3503c Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 18 Sep 2012 13:49:54 +0000 Subject: [PATCH] Make MachinePostDominatorTree::DT private git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164125 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachinePostDominators.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/llvm/CodeGen/MachinePostDominators.h b/include/llvm/CodeGen/MachinePostDominators.h index efadd00485f..a9fc8434abe 100644 --- a/include/llvm/CodeGen/MachinePostDominators.h +++ b/include/llvm/CodeGen/MachinePostDominators.h @@ -27,10 +27,12 @@ namespace llvm { /// to compute the a post-dominator tree. /// struct MachinePostDominatorTree : public MachineFunctionPass { - static char ID; - +private: DominatorTreeBase *DT; +public: + static char ID; + MachinePostDominatorTree(); ~MachinePostDominatorTree();