From: Tom Stellard Date: Tue, 18 Sep 2012 13:49:54 +0000 (+0000) Subject: Make MachinePostDominatorTree::DT private X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=879d90f23cbef7bc61b54ee4f9bbf131aae3503c;p=oota-llvm.git Make MachinePostDominatorTree::DT private git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164125 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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();