From 59f2e9d83d69ae2a714b02861809fc3bec9c9e2f Mon Sep 17 00:00:00 2001 From: Andrew MacLeod Date: Mon, 20 Oct 2014 15:30:50 +0000 Subject: cfgrtl.h: New. 2014-10-20 Andrew MacLeod * cfgrtl.h: New. Add prototypes for cfgrtl.c. * basic-block.h: Remove prototypes for cfgrtl.c. * cfghooks.h (cfg_layout_initialize, cfg_layout_finalize): Move prototypes to cfgrtl.h. * profile.h (profile_info): Add extern export declaration. * rtl.h: Remove prototypes for cfgrtl.h. * tree-cfg.h (gt_ggc_mx, gt_pch_nx): Move prototypes to here. * ipa-inline.c: Include profile.h. * loop-unroll.c: Ditto. * modulo-sched.c: Ditto. * postreload-gcse.c: Ditto. * predict.c: Ditto. * sched-ebb.c: Ditto. * sched-rgn.c: Ditto. * tracer.c: Ditto. * tree-ssa-loop-ivcanon.c: Ditto. From-SVN: r216485 --- gcc/tree-cfg.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/tree-cfg.h') diff --git a/gcc/tree-cfg.h b/gcc/tree-cfg.h index 751d0a2..1e23fac 100644 --- a/gcc/tree-cfg.h +++ b/gcc/tree-cfg.h @@ -24,6 +24,11 @@ along with GCC; see the file COPYING3. If not see /* Location to track pending stmt for edge insertion. */ #define PENDING_STMT(e) ((e)->insns.g) +/* Garbage collection and PCH support for edge_def. */ +extern void gt_ggc_mx (edge_def *e); +extern void gt_pch_nx (edge_def *e); +extern void gt_pch_nx (edge_def *e, gt_pointer_operator, void *); + extern void init_empty_tree_cfg_for_function (struct function *); extern void init_empty_tree_cfg (void); extern void fold_cond_expr_cond (void); -- cgit v1.1