aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.h
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2012-07-11 08:46:17 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2012-07-11 08:46:17 +0000
commitb8244d74e1929d1f4e06dbc3ca307ddf754c6b3c (patch)
tree344c84d8e17cd478a37da8d5e9df82ffd900767f /gcc/tree-inline.h
parentc48acc4f0a390ee7d6036078471572ece8a1668e (diff)
downloadgcc-b8244d74e1929d1f4e06dbc3ca307ddf754c6b3c.zip
gcc-b8244d74e1929d1f4e06dbc3ca307ddf754c6b3c.tar.gz
gcc-b8244d74e1929d1f4e06dbc3ca307ddf754c6b3c.tar.bz2
basic-block.h (struct edge_def): Use basic_block instead of basic_block_def *.
* basic-block.h (struct edge_def): Use basic_block instead of basic_block_def *. * cfgloop.h (struct loop_exit, struct loop): Likewise. * gengenrtl.c (type_from_format): Likewise. Also for 'tree' instead of union tree_node *. * rtl.h (union rtunion_def, emit_insn_before_noloc, emit_insn_after_noloc, add_insn_before, add_insn_after, debug_bb_slim): Likewise. * tree-inline.h (struct copy_body_data): Likewise. * sched-rgn.c (dump_region_dot): Likewise. * gimple.h (struct gimple_statement_base, gimple_set_bb, gsi_move_to_bb_end): Likewise. * sched-vis.c (debug_bb_slim): Likewise. (debug_bb_n_slim): Likewise. * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Likewise. (mn10300_block_contains_call): From-SVN: r189424
Diffstat (limited to 'gcc/tree-inline.h')
-rw-r--r--gcc/tree-inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.h b/gcc/tree-inline.h
index ba0b2c4..b156e82 100644
--- a/gcc/tree-inline.h
+++ b/gcc/tree-inline.h
@@ -116,7 +116,7 @@ typedef struct copy_body_data
struct pointer_set_t *statements_to_fold;
/* Entry basic block to currently copied body. */
- struct basic_block_def *entry_bb;
+ basic_block entry_bb;
/* Debug statements that need processing. */
VEC(gimple,heap) *debug_stmts;