mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix a parentheses warning introduced in r215394.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215459 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
49135bb76c
commit
693defb6ea
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user