From: Chris Lattner Date: Wed, 15 Oct 2003 16:43:24 +0000 (+0000) Subject: Remove usage of use_size() X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=33922eb64811ac758b5ebd2bc79150298f57ba7b;p=oota-llvm.git Remove usage of use_size() git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9134 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index e0047965f1b..a001f5a1a3e 100644 --- a/include/llvm/Analysis/InstForest.h +++ b/include/llvm/Analysis/InstForest.h @@ -218,7 +218,7 @@ inline std::ostream &operator<<(std::ostream &o, const InstForest &IF){ // template bool InstTreeNode::CanMergeInstIntoTree(Instruction *I) { - if (I->use_size() > 1) return false; + if (!I->use_empty() && !I->hasOneUse()) return false; return I->getParent() == cast(getValue())->getParent(); }