//===- bolt/Utils/NameResolver.h - Names deduplication helper ---*- 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 // //===----------------------------------------------------------------------===// // // Helper class for names deduplication. // //===----------------------------------------------------------------------===// #ifndef BOLT_UTILS_NAME_RESOLVER_H #define BOLT_UTILS_NAME_RESOLVER_H #include "llvm/ADT/StringMap.h" #include "llvm/ADT/Twine.h" namespace llvm { namespace bolt { class NameResolver { … }; } // namespace bolt } // namespace llvm #endif