Fix a parentheses warning introduced in r215394.

llvm-svn: 215459
This commit is contained in:
Quentin Colombet 2014-08-12 17:11:26 +00:00
parent 58a2f6692b
commit 8427df974e
1 changed files with 2 additions and 2 deletions

View File

@ -856,8 +856,8 @@ computeOperandLatency(const InstrItineraryData *ItinData,
bool TargetInstrInfo::getRegSequenceInputs(
const MachineInstr &MI, unsigned DefIdx,
SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const {
assert(MI.isRegSequence() ||
MI.isRegSequenceLike() && "Instruction do not have the proper type");
assert((MI.isRegSequence() ||
MI.isRegSequenceLike()) && "Instruction do not have the proper type");
if (!MI.isRegSequence())
return getRegSequenceLikeInputs(MI, DefIdx, InputRegs);