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,
unsigned DstReg,
unsigned SrcReg) const {
assert(!"Not Implemented");
return NULL;
llvm_unreachable("Not Implemented");
}
bool SIInstrInfo::isMov(unsigned Opcode) const {