diff options
author | Sam Clegg <sbc@chromium.org> | 2017-06-06 16:38:59 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2017-06-06 16:38:59 +0000 |
commit | 6dc65e9105aad9a6747d48616958b2589489f32c (patch) | |
tree | a32a275064b7c521c49715cb1006376136940664 /llvm/lib/MC/MCWasmObjectTargetWriter.cpp | |
parent | 0e454a9837c312807e8791dfcd8607cbc18d4359 (diff) | |
download | bcm5719-llvm-6dc65e9105aad9a6747d48616958b2589489f32c.tar.gz bcm5719-llvm-6dc65e9105aad9a6747d48616958b2589489f32c.zip |
[WebAssembly] Remove unused methods from MCWasmObjectTargetWriter
These methods looks like they were originally came from
MCELFObjectTargetWriter but they are never called by the
WasmObjectWriter.
Remove these methods meant the declaration of WasmRelocationEntry
could also move into the cpp file.
Differential Revision: https://reviews.llvm.org/D33905
llvm-svn: 304804
Diffstat (limited to 'llvm/lib/MC/MCWasmObjectTargetWriter.cpp')
-rw-r--r-- | llvm/lib/MC/MCWasmObjectTargetWriter.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/lib/MC/MCWasmObjectTargetWriter.cpp b/llvm/lib/MC/MCWasmObjectTargetWriter.cpp index a09a17d7a12..301f30d4f6e 100644 --- a/llvm/lib/MC/MCWasmObjectTargetWriter.cpp +++ b/llvm/lib/MC/MCWasmObjectTargetWriter.cpp @@ -17,11 +17,5 @@ using namespace llvm; MCWasmObjectTargetWriter::MCWasmObjectTargetWriter(bool Is64Bit_) : Is64Bit(Is64Bit_) {} -bool MCWasmObjectTargetWriter::needsRelocateWithSymbol(const MCSymbol &Sym, - unsigned Type) const { - return false; -} - -void MCWasmObjectTargetWriter::sortRelocs( - const MCAssembler &Asm, std::vector<WasmRelocationEntry> &Relocs) { -} +// Pin the vtable to this object file +MCWasmObjectTargetWriter::~MCWasmObjectTargetWriter() = default; |