diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-02 20:02:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-02 20:02:41 +0000 |
commit | 2ccc5f1081b0ffff665691d6bb2be61cd5d6123f (patch) | |
tree | af6fcae34eb0882649dd941e8e9fc8cd128c9864 /lib/Analysis/DataStructure/CompleteBottomUp.cpp | |
parent | da7c380eb41a8df8120fe109ed2cba0c0adc29ba (diff) |
use a callee_iterator typedef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/CompleteBottomUp.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/CompleteBottomUp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 834ae9738f..9eb593825e 100644 --- a/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/lib/Analysis/DataStructure/CompleteBottomUp.cpp @@ -120,7 +120,7 @@ unsigned CompleteBUDataStructures::calculateSCCGraphs(DSGraph &FG, Instruction *Call = CI->getCallSite().getInstruction(); // Loop over all of the actually called functions... - ActualCalleesTy::iterator I = callee_begin(Call), E = callee_end(Call); + callee_iterator I = callee_begin(Call), E = callee_end(Call); for (; I != E && I->first == Call; ++I) { assert(I->first == Call && "Bad callee construction!"); if (!I->second->isExternal()) { @@ -197,7 +197,7 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) { // Inline direct calls as well as indirect calls because the direct // callee may have indirect callees and so may have changed. // - ActualCalleesTy::iterator I = callee_begin(TheCall),E = callee_end(TheCall); + callee_iterator I = callee_begin(TheCall),E = callee_end(TheCall); unsigned TNum = 0, Num = 0; DEBUG(Num = std::distance(I, E)); for (; I != E; ++I, ++TNum) { |