diff options
Diffstat (limited to 'clang/lib/Analysis/Dominators.cpp')
-rw-r--r-- | clang/lib/Analysis/Dominators.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/lib/Analysis/Dominators.cpp b/clang/lib/Analysis/Dominators.cpp index b872869f8cf..a350d4ca18b 100644 --- a/clang/lib/Analysis/Dominators.cpp +++ b/clang/lib/Analysis/Dominators.cpp @@ -10,4 +10,8 @@ using namespace clang; -void DominatorTree::anchor() {} +template <> +void CFGDominatorTreeImpl</*IsPostDom=*/true>::anchor() {} + +template <> +void CFGDominatorTreeImpl</*IsPostDom=*/false>::anchor() {} |