Fix a broken assert found by -Wparentheses.

llvm-svn: 141168
This commit is contained in:
Chandler Carruth 2011-10-05 07:02:23 +00:00
parent e276b3662b
commit f6567a131d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}