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 | f410608271b6318bfc9e26c0d199f185d5a89ccb (patch) | |
tree | 657e0f50bc3d75837e1154ebdd71aa190d7acc2b /lib/MC/MCMachOStreamer.cpp | |
parent | 8c20ec54d98176d31f310e4684d1d7f2ea0639bc (diff) |
Enable DebugInfo support for COFF object files.
Patch by Nathan Jeffords!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCMachOStreamer.cpp')
-rw-r--r-- | lib/MC/MCMachOStreamer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/MC/MCMachOStreamer.cpp b/lib/MC/MCMachOStreamer.cpp index d1f9f5cd56..a21dc1987d 100644 --- a/lib/MC/MCMachOStreamer.cpp +++ b/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"); } |