Index: include/clang/Analysis/Analyses/Dominators.h =================================================================== --- include/clang/Analysis/Analyses/Dominators.h +++ include/clang/Analysis/Analyses/Dominators.h @@ -38,15 +38,15 @@ class DominatorTree : public ManagedAnalysis { virtual void anchor(); public: - llvm::DominatorTreeBase* DT; + llvm::DominatorTreeBase* DT; DominatorTree() { - DT = new llvm::DominatorTreeBase(false); + DT = new llvm::DominatorTreeBase(); } ~DominatorTree() override { delete DT; } - llvm::DominatorTreeBase& getBase() { return *DT; } + llvm::DominatorTreeBase& getBase() { return *DT; } /// \brief This method returns the root CFGBlock of the dominators tree. ///