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/MCPureStreamer.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/MCPureStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCPureStreamer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCPureStreamer.cpp b/llvm/lib/MC/MCPureStreamer.cpp index 6098e6b8f38..9e80b3bafdc 100644 --- a/llvm/lib/MC/MCPureStreamer.cpp +++ b/llvm/lib/MC/MCPureStreamer.cpp @@ -83,6 +83,9 @@ public: virtual void EndCOFFSymbolDef() { report_fatal_error("unsupported directive in pure streamer"); } + virtual void EmitCOFFSecRel32(MCSymbol const *Symbol) { + report_fatal_error("unsupported directive in pure streamer"); + } virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { report_fatal_error("unsupported directive in pure streamer"); } |