//===- GenericDomTreeUpdater.h ----------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file defines the GenericDomTreeUpdater class, which provides a uniform // way to update dominator tree related data structures. // //===----------------------------------------------------------------------===// #ifndef LLVM_ANALYSIS_GENERICDOMTREEUPDATER_H #define LLVM_ANALYSIS_GENERICDOMTREEUPDATER_H #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallSet.h" #include "llvm/Support/Compiler.h" namespace llvm { template <typename DerivedT, typename DomTreeT, typename PostDomTreeT> class GenericDomTreeUpdater { … }; } // namespace llvm #endif // LLVM_ANALYSIS_GENERICDOMTREEUPDATER_H