1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Make MachinePostDominatorTree::DT private

llvm-svn: 164125
This commit is contained in:
Tom Stellard 2012-09-18 13:49:54 +00:00
parent 675cba8535
commit 7839a3cf23

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();