summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortstellar <tstellar@91177308-0d34-0410-b5e6-96231b3b80d8>2012-09-18 13:49:54 +0000
committertstellar <tstellar@91177308-0d34-0410-b5e6-96231b3b80d8>2012-09-18 13:49:54 +0000
commit6f638c520053e24363a7c7ee51430c42b3b52f6d (patch)
treef45bad80237820ce42fb22b4f3b0bdd124e2a2a4 /include
parent687a772e9252442a190c9b49f32fc6f46e8e630c (diff)
Make MachinePostDominatorTree::DT private
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164125 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachinePostDominators.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachinePostDominators.h b/include/llvm/CodeGen/MachinePostDominators.h
index efadd00485..a9fc8434ab 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<MachineBasicBlock> *DT;
+public:
+ static char ID;
+
MachinePostDominatorTree();
~MachinePostDominatorTree();