2018-03-14 05:32:01 +08:00
|
|
|
//===- Dominators.cpp - Implementation of dominators tree for Clang CFG ---===//
|
2011-12-20 10:48:34 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-12-20 10:48:34 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Analysis/Analyses/Dominators.h"
|
|
|
|
|
2019-07-03 20:06:10 +08:00
|
|
|
namespace clang {
|
2011-12-20 10:48:34 +08:00
|
|
|
|
2019-07-03 19:39:12 +08:00
|
|
|
template <>
|
2019-07-03 20:06:10 +08:00
|
|
|
void CFGDominatorTreeImpl</*IsPostDom=*/true>::anchor() {}
|
2019-07-03 19:39:12 +08:00
|
|
|
|
|
|
|
template <>
|
2019-07-03 20:06:10 +08:00
|
|
|
void CFGDominatorTreeImpl</*IsPostDom=*/false>::anchor() {}
|
|
|
|
|
|
|
|
} // end of namespace clang
|