#ifndef LLD_WASM_INPUT_ELEMENT_H
#define LLD_WASM_INPUT_ELEMENT_H
#include "Config.h"
#include "InputFiles.h"
#include "WriterUtils.h"
#include "lld/Common/LLVM.h"
#include "llvm/Object/Wasm.h"
#include <optional>
namespace lld {
namespace wasm {
class InputElement { … };
inline WasmInitExpr intConst(uint64_t value, bool is64) { … }
class InputGlobal : public InputElement { … };
class InputTag : public InputElement { … };
class InputTable : public InputElement { … };
}
inline std::string toString(const wasm::InputElement *d) { … }
}
#endif