10b57cec5SDimitry Andric //===-- MCWasmObjectTargetWriter.cpp - Wasm Target Writer Subclass --------===// 20b57cec5SDimitry Andric // 30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b57cec5SDimitry Andric // 70b57cec5SDimitry Andric //===----------------------------------------------------------------------===// 80b57cec5SDimitry Andric 90b57cec5SDimitry Andric #include "llvm/MC/MCWasmObjectWriter.h" 100b57cec5SDimitry Andric 110b57cec5SDimitry Andric using namespace llvm; 120b57cec5SDimitry Andric MCWasmObjectTargetWriter(bool Is64Bit,bool IsEmscripten)13*8bcb0991SDimitry AndricMCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit, 14*8bcb0991SDimitry Andric bool IsEmscripten) 15*8bcb0991SDimitry Andric : Is64Bit(Is64Bit), IsEmscripten(IsEmscripten) {} 160b57cec5SDimitry Andric 170b57cec5SDimitry Andric // Pin the vtable to this object file 180b57cec5SDimitry Andric MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default; 19