xref: /llvm-project/clang/lib/Analysis/Dominators.cpp (revision b069bbf510e6a24431c22055297b1e58f6d3e312)
1bc324330SEugene Zelenko //===- Dominators.cpp - Implementation of dominators tree for Clang CFG ---===//
268e081d6SDavid Blaikie //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
668e081d6SDavid Blaikie //
768e081d6SDavid Blaikie //===----------------------------------------------------------------------===//
868e081d6SDavid Blaikie 
968e081d6SDavid Blaikie #include "clang/Analysis/Analyses/Dominators.h"
1068e081d6SDavid Blaikie 
11*b069bbf5SKristof Umann namespace clang {
1268e081d6SDavid Blaikie 
1371a9dc39SKristof Umann template <>
anchor()14*b069bbf5SKristof Umann void CFGDominatorTreeImpl</*IsPostDom=*/true>::anchor() {}
1571a9dc39SKristof Umann 
1671a9dc39SKristof Umann template <>
anchor()17*b069bbf5SKristof Umann void CFGDominatorTreeImpl</*IsPostDom=*/false>::anchor() {}
18*b069bbf5SKristof Umann 
19*b069bbf5SKristof Umann } // end of namespace clang
20