//===- bolt/RuntimeLibs/HugifyRuntimeLibrary.h - Hugify Lib -----*- 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 contains the declaration of the HugifyRuntimeLibrary class. // //===----------------------------------------------------------------------===// #ifndef BOLT_RUNTIMELIBS_HUGIFY_RUNTIME_LIBRARY_H #define BOLT_RUNTIMELIBS_HUGIFY_RUNTIME_LIBRARY_H #include "bolt/RuntimeLibs/RuntimeLibrary.h" namespace llvm { namespace bolt { class HugifyRuntimeLibrary : public RuntimeLibrary { … }; } // namespace bolt } // namespace llvm #endif