From 8427df974eff69d317fa2a6d482e2449dc448a6e Mon Sep 17 00:00:00 2001 From: Quentin Colombet Date: Tue, 12 Aug 2014 17:11:26 +0000 Subject: Fix a parentheses warning introduced in r215394. llvm-svn: 215459 --- llvm/lib/CodeGen/TargetInstrInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/TargetInstrInfo.cpp b/llvm/lib/CodeGen/TargetInstrInfo.cpp index 8c57beb5ee9..44fbc4bb631 100644 --- a/llvm/lib/CodeGen/TargetInstrInfo.cpp +++ b/llvm/lib/CodeGen/TargetInstrInfo.cpp @@ -856,8 +856,8 @@ computeOperandLatency(const InstrItineraryData *ItinData, bool TargetInstrInfo::getRegSequenceInputs( const MachineInstr &MI, unsigned DefIdx, SmallVectorImpl &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); -- cgit v1.2.3