summaryrefslogtreecommitdiff
path: root/lib/Target/ARM64/ARM64ConditionalCompares.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-04-11 01:50:01 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-04-11 01:50:01 +0000
commit77cf856e56dc568ebe760e7de820323fdcf825a4 (patch)
tree377495323604a06e95c3199fe563498fc6139a70 /lib/Target/ARM64/ARM64ConditionalCompares.cpp
parentae64ab542a8452e93c4d4c89295e086bb0cc49a2 (diff)
downloadllvm-77cf856e56dc568ebe760e7de820323fdcf825a4.tar.gz
llvm-77cf856e56dc568ebe760e7de820323fdcf825a4.tar.bz2
llvm-77cf856e56dc568ebe760e7de820323fdcf825a4.tar.xz
Implement depth_first and inverse_depth_first range factory functions.
Also updated as many loops as I could find using df_begin/idf_begin - strangely I found no uses of idf_begin. Is that just used out of tree? Also a few places couldn't use df_begin because either they used the member functions of the depth first iterators or had specific ordering constraints (I added a comment in the latter case). Based on a patch by Jim Grosbach. (Jim - you just had iterator_range<T> where you needed iterator_range<idf_iterator<T>>) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM64/ARM64ConditionalCompares.cpp')
-rw-r--r--lib/Target/ARM64/ARM64ConditionalCompares.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM64/ARM64ConditionalCompares.cpp b/lib/Target/ARM64/ARM64ConditionalCompares.cpp
index cefa44ad96..759e8b7df4 100644
--- a/lib/Target/ARM64/ARM64ConditionalCompares.cpp
+++ b/lib/Target/ARM64/ARM64ConditionalCompares.cpp
@@ -908,7 +908,7 @@ bool ARM64ConditionalCompares::runOnMachineFunction(MachineFunction &MF) {
// Note that updateDomTree() modifies the children of the DomTree node
// currently being visited. The df_iterator supports that; it doesn't look at
// child_begin() / child_end() until after a node has been visited.
- for (auto *I : make_range(df_begin(DomTree), df_end(DomTree)))
+ for (auto *I : depth_first(DomTree))
if (tryConvert(I->getBlock()))
Changed = true;