commit | 19bfae479708a2f212513d6060b40334b67f4d80 | [log] [tgz] |
---|---|---|
author | Shuxin Yang <shuxin.llvm@gmail.com> | Sat Dec 08 05:00:59 2012 +0000 |
committer | Shuxin Yang <shuxin.llvm@gmail.com> | Sat Dec 08 05:00:59 2012 +0000 |
tree | 53820f86d706d7b68c2dcd5dc1e87dd07795881c | |
parent | 0956ae5ac2d5fac56248a03a9dd8caa398a39cc5 [diff] [blame] |
Fix an inadvertent typo error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169671 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/LoopIdiomRecognize.cpp b/lib/Transforms/Scalar/LoopIdiomRecognize.cpp index 153fedf..8f92994 100644 --- a/lib/Transforms/Scalar/LoopIdiomRecognize.cpp +++ b/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
@@ -455,7 +455,7 @@ continue; PHINode *Phi = dyn_cast<PHINode>(Inst->getOperand(0)); - if (!Phi && Phi->getParent() != LoopEntry) + if (!Phi || Phi->getParent() != LoopEntry) continue; // Check if the result of the instruction is live of the loop.