From: Jakub Kuderski Date: Sun, 16 Jul 2017 17:29:19 +0000 (+0000) Subject: Apply explicit instantiation workaround to DominanceFrontier X-Git-Tag: android-x86-7.1-r4~13452 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1efe842f5a08bb2db1349b53872b21588fda4e0d;p=android-x86%2Fexternal-llvm.git 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 --- 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