PPC: Reinstate the fatal error when trying to emit a macho file.

llvm-svn: 168543
This commit is contained in:
Benjamin Kramer 2012-11-24 15:23:49 +00:00
parent 07ea85a5e6
commit 1694f91266
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ public:
void RecordRelocation(MachObjectWriter *Writer,
const MCAssembler &Asm, const MCAsmLayout &Layout,
const MCFragment *Fragment, const MCFixup &Fixup,
MCValue Target, uint64_t &FixedValue) {}
MCValue Target, uint64_t &FixedValue) {
llvm_unreachable("Relocation emission for MachO/PPC unimplemented!");
}
};
class PPCAsmBackend : public MCAsmBackend {