Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 1 | //===-- MCWasmObjectTargetWriter.cpp - Wasm Target Writer Subclass --------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 9 | #include "llvm/MC/MCWasmObjectWriter.h" |
| 10 | |
| 11 | using namespace llvm; |
| 12 | |
Dan Gohman | da84b68 | 2019-08-29 22:40:00 +0000 | [diff] [blame] | 13 | MCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit, |
| 14 | bool IsEmscripten) |
| 15 | : Is64Bit(Is64Bit), IsEmscripten(IsEmscripten) {} |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 16 | |
Sam Clegg | 6dc65e9 | 2017-06-06 16:38:59 +0000 | [diff] [blame] | 17 | // Pin the vtable to this object file |
| 18 | MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default; |