summaryrefslogtreecommitdiff
path: root/gcc/df.h
diff options
context:
space:
mode:
authordberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-28 23:43:23 +0000
committerdberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-28 23:43:23 +0000
commit2f95707a4f249cd7eb5435d499adbf58a68d1916 (patch)
tree09a663683554d8dfc61afec1cf2ad7d6ea9e5cbf /gcc/df.h
parent32c499883781ca437e90ffda3caa4b7a1a75be49 (diff)
downloadgcc-2f95707a4f249cd7eb5435d499adbf58a68d1916.tar.gz
2001-08-28 Daniel Berlin <dan@cgsoftware.com>
* df.h (struct df): Add rts_order variable. * df.c (df_visit_next_rts): New function. (df_visit_next): Renamed to df_visit_next_rc (df_analyse_1): Allocate/compute/free rts_order as well. (df_rd_global_compute): Use df_visit_next_rc instead of df_visit_next. (df_ru_global_compute): Use df_visit_next_rts instead of df_visit_next. * flow.c (flow_reverse_top_sort_order_compute): New function. * basic-block.h: Add prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45246 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.h')
-rw-r--r--gcc/df.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/df.h b/gcc/df.h
index 3169e3faae0..c550afaee67 100644
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -140,6 +140,7 @@ struct df
bitmap *dom;
int * dfs_order;
int * rc_order;
+ int * rts_order;
};