diff options
author | Andrew Trick <atrick@apple.com> | 2011-10-05 16:52:28 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-10-05 16:52:28 +0000 |
commit | b73a8414a7f7d4f5131338b7bc3a81fe34298e4a (patch) | |
tree | ff5d9fcae6d0ab69f92452772a723eea68d5b479 /lib/Analysis/ScalarEvolution.cpp | |
parent | b0e1bc7b99809e2b45726affd73f72c60c506ea0 (diff) |
Typo. Thanks Bob.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 5b16f6288b..ff9eaa59c7 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -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; } |