17a7e6055SDimitry Andric //===-- MCWasmObjectTargetWriter.cpp - Wasm Target Writer Subclass --------===// 27a7e6055SDimitry Andric // 37a7e6055SDimitry Andric // The LLVM Compiler Infrastructure 47a7e6055SDimitry Andric // 57a7e6055SDimitry Andric // This file is distributed under the University of Illinois Open Source 67a7e6055SDimitry Andric // License. See LICENSE.TXT for details. 77a7e6055SDimitry Andric // 87a7e6055SDimitry Andric //===----------------------------------------------------------------------===// 97a7e6055SDimitry Andric 107a7e6055SDimitry Andric #include "llvm/MC/MCWasmObjectWriter.h" 117a7e6055SDimitry Andric 127a7e6055SDimitry Andric using namespace llvm; 137a7e6055SDimitry Andric MCWasmObjectTargetWriter(bool Is64Bit_)147a7e6055SDimitry AndricMCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit_) 157a7e6055SDimitry Andric : Is64Bit(Is64Bit_) {} 167a7e6055SDimitry Andric 17db17bf38SDimitry Andric // Pin the vtable to this object file 18db17bf38SDimitry Andric MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default; 19