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/MCMachOStreamer.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/MCMachOStreamer.cpp')
| -rw-r--r-- | llvm/lib/MC/MCMachOStreamer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp index d1f9f5cd568..a21dc1987d2 100644 --- a/llvm/lib/MC/MCMachOStreamer.cpp +++ b/llvm/lib/MC/MCMachOStreamer.cpp @@ -63,6 +63,9 @@ public: virtual void EndCOFFSymbolDef() { assert(0 && "macho doesn't support this directive"); } + virtual void EmitCOFFSecRel32(MCSymbol const *Symbol) { + assert(0 && "macho doesn't support this directive"); + } virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { assert(0 && "macho doesn't support this directive"); } |

