Do not use BasicBlock::*_iterator, just use *_iterator itself.
Isn't updating copy and pasted code a joy

llvm-svn: 8702
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp
index f6f3016..16f98e7 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp
+++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp
@@ -57,8 +57,7 @@
   time++;
   d[u]=time;
 
-  for(BasicBlock::succ_iterator vl = succ_begin(u), 
-	ve = succ_end(u); vl != ve; ++vl){
+  for (succ_iterator vl = succ_begin(u), ve = succ_end(u); vl != ve; ++vl){
     
     BasicBlock *BB = *vl;