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/MCMachOStreamer.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/MCMachOStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCMachOStreamer.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp index 3ed89c4cccd..2001e3e3aea 100644 --- a/llvm/lib/MC/MCMachOStreamer.cpp +++ b/llvm/lib/MC/MCMachOStreamer.cpp @@ -99,13 +99,6 @@ public: void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment = 0) override; - void EmitFileDirective(StringRef Filename) override { - // FIXME: Just ignore the .file; it isn't important enough to fail the - // entire assembly. - - // report_fatal_error("unsupported directive: '.file'"); - } - void EmitIdent(StringRef IdentString) override { llvm_unreachable("macho doesn't support this directive"); } |