//===- TypeMerger.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 // //===----------------------------------------------------------------------===// #ifndef LLD_COFF_TYPEMERGER_H #define LLD_COFF_TYPEMERGER_H #include "Config.h" #include "DebugTypes.h" #include "lld/Common/Timer.h" #include "llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h" #include "llvm/DebugInfo/CodeView/TypeHashing.h" #include "llvm/Support/Allocator.h" #include <atomic> namespace lld::coff { GloballyHashedType; TypeIndex; struct GHashState; class TypeMerger { … }; } // namespace lld::coff #endif