blob: 1ccb3a58d5c12e29f2d0eabe8137838bb0577a7e [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
Dan Gohmanda84b682019-08-29 22:40:00 +000013MCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit,
14 bool IsEmscripten)
15 : Is64Bit(Is64Bit), IsEmscripten(IsEmscripten) {}
Dan Gohman18eafb62017-02-22 01:23:18 +000016
Sam Clegg6dc65e92017-06-06 16:38:59 +000017// Pin the vtable to this object file
18MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default;