mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Rework r183728, suppress assert(0) for now. Its behavior depends on assertions on win32 hosts.
FIXME: Introduce yet another checker but assert(0). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183736 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -680,8 +680,11 @@ MCAsmBackend *llvm::createARMAsmBackend(const Target &T, StringRef TT, StringRef
|
||||
return new DarwinARMAsmBackend(T, TT, CS);
|
||||
}
|
||||
|
||||
#if 0
|
||||
// FIXME: Introduce yet another checker but assert(0).
|
||||
if (TheTriple.isOSBinFormatCOFF())
|
||||
llvm_unreachable("Windows not supported on ARM");
|
||||
assert(0 && "Windows not supported on ARM");
|
||||
#endif
|
||||
|
||||
uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
|
||||
return new ELFARMAsmBackend(T, TT, OSABI);
|
||||
|
Reference in New Issue
Block a user