mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Use global *_iterator
llvm-svn: 8703
This commit is contained in:
parent
feb17a5fbf
commit
a72fa3ea50
@ -27,8 +27,7 @@ namespace {
|
||||
char doDFS(BasicBlock * node,std::map<BasicBlock *, Color > &color){
|
||||
color[node] = GREY;
|
||||
|
||||
for(BasicBlock::succ_iterator vl = succ_begin(node),
|
||||
ve = succ_end(node); vl != ve; ++vl){
|
||||
for(succ_iterator vl = succ_begin(node), ve = succ_end(node); vl != ve; ++vl){
|
||||
|
||||
BasicBlock *BB = *vl;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user