diff options
author | Thomas Neumann <tneumann@gcc.gnu.org> | 2007-06-05 15:41:04 +0000 |
---|---|---|
committer | Thomas Neumann <tneumann@gcc.gnu.org> | 2007-06-05 15:41:04 +0000 |
commit | ae50c0cbc82a40aa955d713c4e68a9fd32b6a98a (patch) | |
tree | f12abaf00f4ac040bcdbeb67b7ce6b482e1ffff4 /gcc/cfgloop.h | |
parent | 3fe5bcaf11efc74817ef5b4d0b612b6f5cb21388 (diff) | |
download | gcc-ae50c0cbc82a40aa955d713c4e68a9fd32b6a98a.zip gcc-ae50c0cbc82a40aa955d713c4e68a9fd32b6a98a.tar.gz gcc-ae50c0cbc82a40aa955d713c4e68a9fd32b6a98a.tar.bz2 |
cfg.c (init_flow): Use type safe memory macros.
* cfg.c (init_flow): Use type safe memory macros.
(alloc_block): Likewise.
(unchecked_make_edge): Likewise.
(dump_flow_info): Avoid using C++ keywords as variable names.
(copy_original_table_clear): Cast according to the coding conventions.
(copy_original_table_set): Likewise.
* cfgexpand (label_rtx_for_bb): Likewise.
(expand_gimüle_basic_block): Likewise.
* cfghooks.c (dump_bb): Likewise.
(lv_adjust_loop_header_phi): Avoid using C++ keywords as variable names.
(lv_add_condition_to_bb): Likewise.
* cfglayout (relink_block_chain): Cast according to the coding
conventions.
(fixup_reorder_chain): Likewise.
(fixup_fallthru_exit_predecessor): Likewise.
* cfgloop.c (glb_enum_p): Likewise.
(get_exit_description): Likewise.
(dump_recorded_exit): Likewise.
* cfgloop.h (enum loop_estimation): Move out of struct scope...
(struct loop): ... from here.
* cfgloopmanip (rpe_enum_p): Cast according to the coding conventions.
* cfgrtl.c (rtl_create_basic_block): Likewise.
(rtl_split_block): Likewise.
(rtl_dump_bb): Likewise.
(cfg_layout_split_block): Likewise.
(init_rtl_bb_info): Use typesafe memory macros.
* graphds.h (struct graph_edge): Renamed edge to graph_edge.
* graphds.h: Updated all usages of edge to graph_edge.
* graphds.c: Likewise.
* cfgloopanal.c: Likewise.
From-SVN: r125336
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index 59815cc..7b042eb 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -90,6 +90,16 @@ DEF_VEC_P (loop_p); DEF_VEC_ALLOC_P (loop_p, heap); DEF_VEC_ALLOC_P (loop_p, gc); +/* An integer estimation of the number of iterations. Estimate_state + describes what is the state of the estimation. */ +enum loop_estimation +{ + /* Estimate was not computed yet. */ + EST_NOT_COMPUTED, + /* Estimate is ready. */ + EST_AVAILABLE +}; + /* Structure to hold information for each natural loop. */ struct loop GTY ((chain_next ("%h.next"))) { @@ -135,13 +145,7 @@ struct loop GTY ((chain_next ("%h.next"))) /* An integer estimation of the number of iterations. Estimate_state describes what is the state of the estimation. */ - enum - { - /* Estimate was not computed yet. */ - EST_NOT_COMPUTED, - /* Estimate is ready. */ - EST_AVAILABLE - } estimate_state; + enum loop_estimation estimate_state; /* An integer guaranteed to bound the number of iterations of the loop from above. */ |