diff options
author | Richard Biener <rguenther@suse.de> | 2017-09-25 13:19:16 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2017-09-25 13:19:16 +0000 |
commit | 26993e95b9e5d4c79ee6c9b16307046383590748 (patch) | |
tree | 62988443002b9798950e5d2cb60215d7239a4b6e /gcc/cfgloop.h | |
parent | 579f368704e340c47957d5fb5aca6ecda6624a69 (diff) | |
download | gcc-26993e95b9e5d4c79ee6c9b16307046383590748.zip gcc-26993e95b9e5d4c79ee6c9b16307046383590748.tar.gz gcc-26993e95b9e5d4c79ee6c9b16307046383590748.tar.bz2 |
cfgloop.h (sort_sibling_loops): Declare.
2017-09-25 Richard Biener <rguenther@suse.de>
* cfgloop.h (sort_sibling_loops): Declare.
* cfgloop.c (sort_sibling_loops_cmp): New helper.
(sort_sibling_loops): New function sorting the sibling loop list
in RPO order.
* graphite.c (graphite_transform_loops): Sort sibling loops.
From-SVN: r253149
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index fcf3667..0b164e9 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -333,6 +333,7 @@ bool mark_irreducible_loops (void); void release_recorded_exits (function *); void record_loop_exits (void); void rescan_loop_exit (edge, bool, bool); +void sort_sibling_loops (function *); /* Loop data structure manipulation/querying. */ extern void flow_loop_tree_node_add (struct loop *, struct loop *); |