mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
MC/Mach-O: Fail faster/harder when we see .file, which isn't yet supported.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104031 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -142,10 +142,10 @@ public:
|
|||||||
unsigned char Value = 0);
|
unsigned char Value = 0);
|
||||||
|
|
||||||
virtual void EmitFileDirective(StringRef Filename) {
|
virtual void EmitFileDirective(StringRef Filename) {
|
||||||
errs() << "FIXME: MCMachoStreamer:EmitFileDirective not implemented\n";
|
report_fatal_error("unsupported directive: '.file'");
|
||||||
}
|
}
|
||||||
virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
|
virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
|
||||||
errs() << "FIXME: MCMachoStreamer:EmitDwarfFileDirective not implemented\n";
|
report_fatal_error("unsupported directive: '.file'");
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void EmitInstruction(const MCInst &Inst);
|
virtual void EmitInstruction(const MCInst &Inst);
|
||||||
|
|||||||
Reference in New Issue
Block a user