EmitDebugLabel should by default be the same as EmitLabel everywhere.

It must be explicity set in MCPureStreamer because otherwise it will
inherit incorrectly from the parent.

llvm-svn: 170383
This commit is contained in:
Reed Kotler 2012-12-17 23:41:45 +00:00
parent d371eb3060
commit 0c1745e56a
1 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,7 @@ public:
virtual void InitSections();
virtual void EmitLabel(MCSymbol *Symbol);
virtual void EmitDebugLabel(MCSymbol *Symbol);
virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
uint64_t Size = 0, unsigned ByteAlignment = 0);
virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
@ -135,6 +136,10 @@ void MCPureStreamer::EmitLabel(MCSymbol *Symbol) {
}
void MCPureStreamer::EmitDebugLabel(MCSymbol *Symbol) {
EmitLabel(Symbol);
}
void MCPureStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
uint64_t Size, unsigned ByteAlignment) {
report_fatal_error("not yet implemented in pure streamer");