mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Add parentheses to silence warning
This commit is contained in:
parent
dcf1bd6c94
commit
c9e75264ee
@ -831,8 +831,8 @@ AArch64LoadStoreOpt::mergePairedInsns(MachineBasicBlock::iterator I,
|
||||
for (auto &MOP : MI.operands()) {
|
||||
if (MOP.isReg() && !MOP.isDebug() && MOP.getReg() &&
|
||||
TRI->regsOverlap(MOP.getReg(), RegToRename)) {
|
||||
assert(MOP.isImplicit() ||
|
||||
(MOP.isRenamable() && !MOP.isEarlyClobber()) &&
|
||||
assert((MOP.isImplicit() ||
|
||||
(MOP.isRenamable() && !MOP.isEarlyClobber())) &&
|
||||
"Need renamable operands");
|
||||
MOP.setReg(GetMatchingSubReg(MOP.getReg()));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user