diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-24 22:06:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-24 22:06:25 +0000 |
commit | a940095ae2c1eaacb38cba0a7916b91772431d91 (patch) | |
tree | 737132c05cc95c3e12befcdc4ed0d3be252dc865 /llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp | |
parent | c3634809e6c4a6ecc47654dda24e89eeab6821bd (diff) | |
download | bcm5719-llvm-a940095ae2c1eaacb38cba0a7916b91772431d91.tar.gz bcm5719-llvm-a940095ae2c1eaacb38cba0a7916b91772431d91.zip |
Do not use BasicBlock::*_iterator, just use *_iterator itself.
Isn't updating copy and pasted code a joy
llvm-svn: 8702
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp index 805250fd9a0..0f8382319a3 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp @@ -216,8 +216,7 @@ void getBBtrace(vector<BasicBlock *> &vBB, int pathNo, Function *M){//, Node *nd=findBB(nodes, BB); assert(nd && "No node for this edge!"); - for(BasicBlock::succ_iterator s=succ_begin(BB), se=succ_end(BB); - s!=se; ++s){ + for(succ_iterator s=succ_begin(BB), se=succ_end(BB); s!=se; ++s){ if(triggerBBs[*s] == 9){ //if(!pathReg[M]){ //Get the path register for this! |