diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-03 21:22:06 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-03 21:22:06 +0000 |
commit | 5b75fd9e56def2c63c1e3150e48e28a15c2af8f7 (patch) | |
tree | 11fea6d20441547b2b5c5546ca2afc44af516f81 /llvm/lib/MC/MCWasmStreamer.cpp | |
parent | faf1feb57dfad798b29241a8f0714014beed733a (diff) | |
download | bcm5719-llvm-5b75fd9e56def2c63c1e3150e48e28a15c2af8f7.tar.gz bcm5719-llvm-5b75fd9e56def2c63c1e3150e48e28a15c2af8f7.zip |
MC: De-duplicate the object streamer implementations of EmitFileDirective into MCObjectStreamer. NFCI.
llvm-svn: 296912
Diffstat (limited to 'llvm/lib/MC/MCWasmStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCWasmStreamer.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/MC/MCWasmStreamer.cpp b/llvm/lib/MC/MCWasmStreamer.cpp index 708050b399b..59b62b8d37c 100644 --- a/llvm/lib/MC/MCWasmStreamer.cpp +++ b/llvm/lib/MC/MCWasmStreamer.cpp @@ -142,13 +142,6 @@ void MCWasmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, MaxBytesToEmit); } -// Add a symbol for the file name of this module. They start after the -// null symbol and don't count as normal symbol, i.e. a non-STT_FILE symbol -// with the same name may appear. -void MCWasmStreamer::EmitFileDirective(StringRef Filename) { - getAssembler().addFileName(Filename); -} - void MCWasmStreamer::EmitIdent(StringRef IdentString) { MCSection *Comment = getAssembler().getContext().getWasmSection( ".comment", 0, 0); |