#ifndef LLVM_OBJECT_WASM_H
#define LLVM_OBJECT_WASM_H
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/BinaryFormat/Wasm.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/MC/MCSymbolWasm.h"
#include "llvm/Object/Binary.h"
#include "llvm/Object/ObjectFile.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/MemoryBuffer.h"
#include <cstddef>
#include <cstdint>
#include <vector>
namespace llvm {
namespace object {
class WasmSymbol { … };
struct WasmSection { … };
struct WasmSegment { … };
class WasmObjectFile : public ObjectFile { … };
class WasmSectionOrderChecker { … };
}
inline raw_ostream &operator<<(raw_ostream &OS, const object::WasmSymbol &Sym) { … }
}
#endif