mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +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(
|
bool TargetInstrInfo::getRegSequenceInputs(
|
||||||
const MachineInstr &MI, unsigned DefIdx,
|
const MachineInstr &MI, unsigned DefIdx,
|
||||||
SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const {
|
SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const {
|
||||||
assert(MI.isRegSequence() ||
|
assert((MI.isRegSequence() ||
|
||||||
MI.isRegSequenceLike() && "Instruction do not have the proper type");
|
MI.isRegSequenceLike()) && "Instruction do not have the proper type");
|
||||||
|
|
||||||
if (!MI.isRegSequence())
|
if (!MI.isRegSequence())
|
||||||
return getRegSequenceLikeInputs(MI, DefIdx, InputRegs);
|
return getRegSequenceLikeInputs(MI, DefIdx, InputRegs);
|
||||||
|
Loading…
Reference in New Issue
Block a user