mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 19:02:35 +00:00
Fix an inadvertent typo error.
llvm-svn: 169671
This commit is contained in:
parent
762d7408db
commit
d80db0a201
@ -455,7 +455,7 @@ bool NclPopcountRecognize::detectIdiom(Instruction *&CntInst,
|
||||
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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user