1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

R600/SI: Use llvm_unreachable() for an always false assert

llvm-svn: 193183
This commit is contained in:
Tom Stellard 2013-10-22 18:42:03 +00:00
parent e692b77f62
commit def55e3397

View File

@ -201,8 +201,7 @@ MachineInstr *SIInstrInfo::buildMovInstr(MachineBasicBlock *MBB,
MachineBasicBlock::iterator I, MachineBasicBlock::iterator I,
unsigned DstReg, unsigned DstReg,
unsigned SrcReg) const { unsigned SrcReg) const {
assert(!"Not Implemented"); llvm_unreachable("Not Implemented");
return NULL;
} }
bool SIInstrInfo::isMov(unsigned Opcode) const { bool SIInstrInfo::isMov(unsigned Opcode) const {