blob: e46257823e3437c223ba1b6ca140819ccdf46942 [file] [log] [blame]
Dan Gohman18eafb62017-02-22 01:23:18 +00001//===-- MCWasmObjectTargetWriter.cpp - Wasm Target Writer Subclass --------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Dan Gohman18eafb62017-02-22 01:23:18 +00006//
7//===----------------------------------------------------------------------===//
8
Dan Gohman18eafb62017-02-22 01:23:18 +00009#include "llvm/MC/MCWasmObjectWriter.h"
10
11using namespace llvm;
12
Heejin Ahn18c56a02019-02-04 19:13:39 +000013MCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit)
14 : Is64Bit(Is64Bit) {}
Dan Gohman18eafb62017-02-22 01:23:18 +000015
Sam Clegg6dc65e92017-06-06 16:38:59 +000016// Pin the vtable to this object file
17MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default;