aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCPureStreamer.cpp
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2012-12-07 17:42:41 +0000
committerEli Bendersky <eliben@google.com>2012-12-07 17:42:41 +0000
commitef76b273f96d99a4a260f3dcadde8fbb96256cf3 (patch)
tree60a8bafc7ac2f2b7afac8303e685cff92f7f42d8 /lib/MC/MCPureStreamer.cpp
parent6eb3e87df04f8b035562d9865292c23f5b79f1a2 (diff)
downloadexternal_llvm-ef76b273f96d99a4a260f3dcadde8fbb96256cf3.zip
external_llvm-ef76b273f96d99a4a260f3dcadde8fbb96256cf3.tar.gz
external_llvm-ef76b273f96d99a4a260f3dcadde8fbb96256cf3.tar.bz2
Lift EmitAssignment into MCObjectStreamer which gets rid of at least three
duplicate implementations in format-specific streamers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCPureStreamer.cpp')
-rw-r--r--lib/MC/MCPureStreamer.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/MC/MCPureStreamer.cpp b/lib/MC/MCPureStreamer.cpp
index 9ccab93..fd9ccf7 100644
--- a/lib/MC/MCPureStreamer.cpp
+++ b/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");