mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-12 09:41:26 +00:00
Add parentheses to silence warning
This commit is contained in:
parent
dedad08ee8
commit
dc03b960d0
@ -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