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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard 2013-10-22 18:42:03 +00:00
parent 47a7c382fd
commit e18273b7be

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 {