mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-20 10:38:46 +00:00
MC/Mach-O: Silently ignore .file directives instead of error'ing out on
them. They aren't important enough to abort the entire assembly, and failing early makes testing more annoying. llvm-svn: 108747
This commit is contained in:
parent
1dd74c37c5
commit
ee5365dc8b
@ -82,10 +82,16 @@ public:
|
||||
unsigned char Value = 0);
|
||||
|
||||
virtual void EmitFileDirective(StringRef Filename) {
|
||||
report_fatal_error("unsupported directive: '.file'");
|
||||
// FIXME: Just ignore the .file; it isn't important enough to fail the
|
||||
// entire assembly.
|
||||
|
||||
//report_fatal_error("unsupported directive: '.file'");
|
||||
}
|
||||
virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
|
||||
report_fatal_error("unsupported directive: '.file'");
|
||||
// FIXME: Just ignore the .file; it isn't important enough to fail the
|
||||
// entire assembly.
|
||||
|
||||
//report_fatal_error("unsupported directive: '.file'");
|
||||
}
|
||||
|
||||
virtual void EmitInstruction(const MCInst &Inst);
|
||||
|
Loading…
Reference in New Issue
Block a user