mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Silence warning about parens for && within ||
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149152 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
04594aeffa
commit
3f8d3c7d72
@ -935,7 +935,7 @@ static void handleMoveUses(const MachineBasicBlock *mbb,
|
||||
void LiveIntervals::moveInstr(MachineBasicBlock::iterator insertPt,
|
||||
MachineInstr *mi) {
|
||||
MachineBasicBlock* mbb = mi->getParent();
|
||||
assert(insertPt == mbb->end() || insertPt->getParent() == mbb &&
|
||||
assert((insertPt == mbb->end() || insertPt->getParent() == mbb) &&
|
||||
"Cannot handle moves across basic block boundaries.");
|
||||
assert(&*insertPt != mi && "No-op move requested?");
|
||||
assert(!mi->isInsideBundle() && "Can't handle bundled instructions yet.");
|
||||
|
Loading…
Reference in New Issue
Block a user