//===- MCWasmStreamer.h - MCStreamer Wasm Object File Interface -*- 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_MCWASMSTREAMER_H #define LLVM_MC_MCWASMSTREAMER_H #include "MCAsmBackend.h" #include "MCCodeEmitter.h" #include "llvm/MC/MCDirectives.h" #include "llvm/MC/MCObjectStreamer.h" #include "llvm/MC/MCObjectWriter.h" #include "llvm/Support/DataTypes.h" namespace llvm { class MCExpr; class MCInst; class MCWasmStreamer : public MCObjectStreamer { … }; } // end namespace llvm #endif