From 1efe842f5a08bb2db1349b53872b21588fda4e0d Mon Sep 17 00:00:00 2001 From: Jakub Kuderski Date: Sun, 16 Jul 2017 17:29:19 +0000 Subject: [PATCH] Apply explicit instantiation workaround to DominanceFrontier This is a workaround for the same explicit instantiation bug as in DominatorTreeBase. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308141 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DominanceFrontier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/DominanceFrontier.h b/include/llvm/Analysis/DominanceFrontier.h index 32dd4334a9b..b566aeaf1fd 100644 --- a/include/llvm/Analysis/DominanceFrontier.h +++ b/include/llvm/Analysis/DominanceFrontier.h @@ -43,7 +43,7 @@ protected: static constexpr bool IsPostDominators = IsPostDom; public: - DominanceFrontierBase() = default; + DominanceFrontierBase() {} /// getRoots - Return the root blocks of the current CFG. This may include /// multiple blocks if we are computing post dominators. For forward -- 2.11.0