110e730a2SDan Gohman //===-- WebAssemblyTargetObjectFile.h - WebAssembly Object Info -*- C++ -*-===// 210e730a2SDan Gohman // 3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 5*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 610e730a2SDan Gohman // 710e730a2SDan Gohman //===----------------------------------------------------------------------===// 810e730a2SDan Gohman /// 910e730a2SDan Gohman /// \file 105f8f34e4SAdrian Prantl /// This file declares the WebAssembly-specific subclass of 1110e730a2SDan Gohman /// TargetLoweringObjectFile. 1210e730a2SDan Gohman /// 1310e730a2SDan Gohman //===----------------------------------------------------------------------===// 1410e730a2SDan Gohman 1510e730a2SDan Gohman #ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYTARGETOBJECTFILE_H 1610e730a2SDan Gohman #define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYTARGETOBJECTFILE_H 1710e730a2SDan Gohman 185bf22fc8SDan Gohman #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" 1910e730a2SDan Gohman 2010e730a2SDan Gohman namespace llvm { 2110e730a2SDan Gohman 2218eafb6cSDan Gohman class WebAssemblyTargetObjectFile final : public TargetLoweringObjectFileWasm { 2310e730a2SDan Gohman public: 245bf22fc8SDan Gohman void Initialize(MCContext &Ctx, const TargetMachine &TM) override; 2510e730a2SDan Gohman }; 2610e730a2SDan Gohman 2710e730a2SDan Gohman } // end namespace llvm 2810e730a2SDan Gohman 2910e730a2SDan Gohman #endif 30