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
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Analysis/Analyses/Dominators.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2018-03-14 05:32:01 +08:00
|
|
|
void DominatorTree::anchor() {}
|