mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-21 18:22:53 +01:00
[WebAssembly][MC] Remove useless overrides in MCWasmStreamer
Differential Revision: https://reviews.llvm.org/D91604
This commit is contained in:
parent
d6ee0533d1
commit
56125f1c87
@ -59,13 +59,9 @@ public:
|
||||
SMLoc Loc = SMLoc()) override;
|
||||
void emitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
|
||||
unsigned ByteAlignment = 0) override;
|
||||
void emitValueImpl(const MCExpr *Value, unsigned Size,
|
||||
SMLoc Loc = SMLoc()) override;
|
||||
|
||||
void emitIdent(StringRef IdentString) override;
|
||||
|
||||
void emitValueToAlignment(unsigned, int64_t, unsigned, unsigned) override;
|
||||
|
||||
void finishImpl() override;
|
||||
|
||||
private:
|
||||
|
@ -148,18 +148,6 @@ void MCWasmStreamer::emitLocalCommonSymbol(MCSymbol *S, uint64_t Size,
|
||||
llvm_unreachable("Local common symbols are not yet implemented for Wasm");
|
||||
}
|
||||
|
||||
void MCWasmStreamer::emitValueImpl(const MCExpr *Value, unsigned Size,
|
||||
SMLoc Loc) {
|
||||
MCObjectStreamer::emitValueImpl(Value, Size, Loc);
|
||||
}
|
||||
|
||||
void MCWasmStreamer::emitValueToAlignment(unsigned ByteAlignment, int64_t Value,
|
||||
unsigned ValueSize,
|
||||
unsigned MaxBytesToEmit) {
|
||||
MCObjectStreamer::emitValueToAlignment(ByteAlignment, Value, ValueSize,
|
||||
MaxBytesToEmit);
|
||||
}
|
||||
|
||||
void MCWasmStreamer::emitIdent(StringRef IdentString) {
|
||||
// TODO(sbc): Add the ident section once we support mergable strings
|
||||
// sections in the object format
|
||||
|
Loading…
Reference in New Issue
Block a user