mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix a broken assert found by -Wparentheses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0c388583fb
commit
f3baa581e8
@ -4714,7 +4714,7 @@ getConstantEvolvingPHIOperands(Instruction *UseInst, const Loop *L,
|
||||
// If this operand is already visited, reuse the prior result.
|
||||
P = PHIMap.lookup(OpInst);
|
||||
if (P) {
|
||||
assert(!PHI || P == PHI && "inconsitent data flow");
|
||||
assert((!PHI || P == PHI) && "inconsitent data flow");
|
||||
PHI = P;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user