blob: 5f10ce1824f1caf42b0aaf02da89e87d9d7873e1 [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
13MCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit_)
14 : Is64Bit(Is64Bit_) {}
15
Sam Clegg6dc65e92017-06-06 16:38:59 +000016// Pin the vtable to this object file
17MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default;