Make MachinePostDominatorTree::DT private

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164125 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard 2012-09-18 13:49:54 +00:00
parent e5373b7c3f
commit 879d90f23c

View File

@ -27,10 +27,12 @@ namespace llvm {
/// to compute the a post-dominator tree.
///
struct MachinePostDominatorTree : public MachineFunctionPass {
static char ID;
private:
DominatorTreeBase<MachineBasicBlock> *DT;
public:
static char ID;
MachinePostDominatorTree();
~MachinePostDominatorTree();