Fix warnings with -DNDEBUG

Patch by: NAKAMURA Takumi

llvm-svn: 170142
This commit is contained in:
Tom Stellard 2012-12-13 19:38:52 +00:00
parent bd4902c44a
commit 36a0b013a7
3 changed files with 3 additions and 2 deletions

View File

@ -75,5 +75,5 @@ Function*
AMDGPUIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
Type **Tys,
unsigned numTys) const {
assert(!"Not implemented");
llvm_unreachable("Not implemented");
}

View File

@ -413,7 +413,7 @@ SDValue R600TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const
Inst = 1;
break;
default:
assert(0 && "Wrong buffer id for stream outputs !");
llvm_unreachable("Wrong buffer id for stream outputs !");
}
return InsertScalarToRegisterExport(DAG, Op.getDebugLoc(), OutputsMap,

View File

@ -605,6 +605,7 @@ MachineOperand &R600InstrInfo::getFlagOp(MachineInstr *MI, unsigned SrcIdx,
case MO_FLAG_ABS:
assert(!IsOP3 && "Cannot set absolute value modifier for OP3 "
"instructions.");
(void)IsOP3;
switch (SrcIdx) {
case 0: FlagIndex = getOperandIdx(*MI, R600Operands::SRC0_ABS); break;
case 1: FlagIndex = getOperandIdx(*MI, R600Operands::SRC1_ABS); break;