118eafb6cSDan Gohman //===-- MCWasmObjectTargetWriter.cpp - Wasm Target Writer Subclass --------===// 218eafb6cSDan Gohman // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 618eafb6cSDan Gohman // 718eafb6cSDan Gohman //===----------------------------------------------------------------------===// 818eafb6cSDan Gohman 918eafb6cSDan Gohman #include "llvm/MC/MCWasmObjectWriter.h" 1018eafb6cSDan Gohman 1118eafb6cSDan Gohman using namespace llvm; 1218eafb6cSDan Gohman MCWasmObjectTargetWriter(bool Is64Bit,bool IsEmscripten)13*da84b688SDan GohmanMCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit, 14*da84b688SDan Gohman bool IsEmscripten) 15*da84b688SDan Gohman : Is64Bit(Is64Bit), IsEmscripten(IsEmscripten) {} 1618eafb6cSDan Gohman 176dc65e91SSam Clegg // Pin the vtable to this object file 186dc65e91SSam Clegg MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default; 19