Typo. Thanks Bob.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141188 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Trick 2011-10-05 16:52:28 +00:00
parent b0e1bc7b99
commit b73a8414a7

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) && "inconsistent data flow");
PHI = P;
continue;
}