Dominators.cpp 611 B

12345678910111213141516171819
  1. //===- Dominators.cpp - Implementation of dominators tree for Clang CFG ---===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #include "clang/Analysis/Analyses/Dominators.h"
  9. namespace clang {
  10. template <>
  11. void CFGDominatorTreeImpl</*IsPostDom=*/true>::anchor() {}
  12. template <>
  13. void CFGDominatorTreeImpl</*IsPostDom=*/false>::anchor() {}
  14. } // end of namespace clang