diff options
author | tneumann <tneumann@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-05 15:41:04 +0000 |
---|---|---|
committer | tneumann <tneumann@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-05 15:41:04 +0000 |
commit | f780cc25eaffc78f268a94471da728ac7945751f (patch) | |
tree | f12abaf00f4ac040bcdbeb67b7ce6b482e1ffff4 /gcc/cfgexpand.c | |
parent | d8f696cf2564f0277efec602a07dc6ff29da8d2a (diff) | |
download | gcc-f780cc25eaffc78f268a94471da728ac7945751f.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index da1e8552e24..24ec32d76c0 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -1262,7 +1262,7 @@ label_rtx_for_bb (basic_block bb) elt = pointer_map_contains (lab_rtx_for_bb, bb); if (elt) - return *elt; + return (rtx) *elt; /* Find the tree label if it is present. */ @@ -1281,7 +1281,7 @@ label_rtx_for_bb (basic_block bb) elt = pointer_map_insert (lab_rtx_for_bb, bb); *elt = gen_label_rtx (); - return *elt; + return (rtx) *elt; } /* A subroutine of expand_gimple_basic_block. Expand one COND_EXPR. @@ -1538,7 +1538,7 @@ expand_gimple_basic_block (basic_block bb) } if (elt) - emit_label (*elt); + emit_label ((rtx) *elt); /* Java emits line number notes in the top of labels. ??? Make this go away once line number notes are obsoleted. */ |