[Target] Use hasOneUse() instead of getNumUses().

The latter does a liner scan over a linked list, therefore is
much more expensive.

llvm-svn: 300518
This commit is contained in:
Davide Italiano 2017-04-18 00:29:54 +00:00
parent 7c0d74aa2b
commit 3e9986f368
1 changed files with 1 additions and 1 deletions

View File

@ -7126,7 +7126,7 @@ bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const {
if (I->getOpcode() != Instruction::FMul)
return true;
if (I->getNumUses() != 1)
if (!I->hasOneUse())
return true;
Instruction *User = I->user_back();