diff options
author | Eli Bendersky <eliben@google.com> | 2012-12-07 17:42:41 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2012-12-07 17:42:41 +0000 |
commit | ea2824dc886cdd54dd6f014428c095b0d747855a (patch) | |
tree | 1a59d4411b61484563ce10b7332c8af5327d07f2 /llvm/lib/MC/MCPureStreamer.cpp | |
parent | 85e276b8aee0bbade2312b94f47237b7cd25beb8 (diff) | |
download | bcm5719-llvm-ea2824dc886cdd54dd6f014428c095b0d747855a.tar.gz bcm5719-llvm-ea2824dc886cdd54dd6f014428c095b0d747855a.zip |
Lift EmitAssignment into MCObjectStreamer which gets rid of at least three
duplicate implementations in format-specific streamers.
llvm-svn: 169613
Diffstat (limited to 'llvm/lib/MC/MCPureStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCPureStreamer.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/MC/MCPureStreamer.cpp b/llvm/lib/MC/MCPureStreamer.cpp index 9ccab930673..fd9ccf74551 100644 --- a/llvm/lib/MC/MCPureStreamer.cpp +++ b/llvm/lib/MC/MCPureStreamer.cpp @@ -37,7 +37,6 @@ public: virtual void InitSections(); virtual void EmitLabel(MCSymbol *Symbol); - virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value); virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0, uint64_t Size = 0, unsigned ByteAlignment = 0); virtual void EmitBytes(StringRef Data, unsigned AddrSpace); @@ -135,14 +134,6 @@ void MCPureStreamer::EmitLabel(MCSymbol *Symbol) { SD.setOffset(F->getContents().size()); } -void MCPureStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { - // TODO: This is exactly the same as WinCOFFStreamer. Consider merging into - // MCObjectStreamer. - // FIXME: Lift context changes into super class. - getAssembler().getOrCreateSymbolData(*Symbol); - Symbol->setVariableValue(AddValueSymbols(Value)); -} - void MCPureStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) { report_fatal_error("not yet implemented in pure streamer"); |