diff options
| author | Quentin Colombet <qcolombet@apple.com> | 2014-08-12 17:11:26 +0000 |
|---|---|---|
| committer | Quentin Colombet <qcolombet@apple.com> | 2014-08-12 17:11:26 +0000 |
| commit | 8427df974eff69d317fa2a6d482e2449dc448a6e (patch) | |
| tree | 39170367c4e215663dd916f6832037e8c5cbdf16 | |
| parent | 58a2f6692bc3d140d2308549f5c0b96e72c0a034 (diff) | |
| download | bcm5719-llvm-8427df974eff69d317fa2a6d482e2449dc448a6e.tar.gz bcm5719-llvm-8427df974eff69d317fa2a6d482e2449dc448a6e.zip | |
Fix a parentheses warning introduced in r215394.
llvm-svn: 215459
| -rw-r--r-- | llvm/lib/CodeGen/TargetInstrInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<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); |

