diff options
author | Devang Patel <dpatel@apple.com> | 2011-02-24 21:04:00 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-02-24 21:04:00 +0000 |
commit | b037383a35660151cc2a8814c0854a6b65039925 (patch) | |
tree | 917246738524d5a8dd6edd4b8705bab59b2b11e2 /llvm/lib/MC/MCELFStreamer.cpp | |
parent | 502f1b943f54728efdae52362b4b1a46dba57d7b (diff) | |
download | bcm5719-llvm-b037383a35660151cc2a8814c0854a6b65039925.tar.gz bcm5719-llvm-b037383a35660151cc2a8814c0854a6b65039925.zip |
Enable DebugInfo support for COFF object files.
Patch by Nathan Jeffords!
llvm-svn: 126425
Diffstat (limited to 'llvm/lib/MC/MCELFStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCELFStreamer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCELFStreamer.cpp b/llvm/lib/MC/MCELFStreamer.cpp index e49074da399..bd55055333c 100644 --- a/llvm/lib/MC/MCELFStreamer.cpp +++ b/llvm/lib/MC/MCELFStreamer.cpp @@ -108,6 +108,10 @@ public: assert(0 && "ELF doesn't support this directive"); } + virtual void EmitCOFFSecRel32(MCSymbol const *Symbol) { + assert(0 && "ELF doesn't support this directive"); + } + virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol); SD.setSize(Value); |