//===- StringTableBuilder.h - String table building utility -----*- 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 LLVM_MC_STRINGTABLEBUILDER_H #define LLVM_MC_STRINGTABLEBUILDER_H #include "llvm/ADT/CachedHashString.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Alignment.h" #include <cstddef> #include <cstdint> namespace llvm { class raw_ostream; /// Utility for building string tables with deduplicated suffixes. class StringTableBuilder { … }; } // end namespace llvm #endif // LLVM_MC_STRINGTABLEBUILDER_H