From: Shuxin Yang Date: Sat, 8 Dec 2012 05:00:59 +0000 (+0000) Subject: Fix an inadvertent typo error. X-Git-Tag: android-x86-6.0-r1~179^2~956 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=19bfae479708a2f212513d6060b40334b67f4d80;p=android-x86%2Fexternal-llvm.git 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 153fedf2c37..8f929941d59 100644 --- a/lib/Transforms/Scalar/LoopIdiomRecognize.cpp +++ b/lib/Transforms/Scalar/LoopIdiomRecognize.cpp @@ -455,7 +455,7 @@ bool NclPopcountRecognize::detectIdiom(Instruction *&CntInst, continue; PHINode *Phi = dyn_cast(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.