diff options
author | rkidd <rkidd@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-10 12:49:46 +0000 |
---|---|---|
committer | rkidd <rkidd@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-10 12:49:46 +0000 |
commit | 3ddccd577896fafaf76163658ebec92f5e7c1ef1 (patch) | |
tree | beede6b03e0a31fcf7974e27cc39df96abf78663 /gcc/rtl.h | |
parent | d0cd0d1025376a4fcd3fef1e88ae4017a3546ad3 (diff) | |
download | gcc-3ddccd577896fafaf76163658ebec92f5e7c1ef1.tar.gz |
2007-09-10 Robert Kidd <rkidd@crhc.uiuc.edu>
* bb-reorder.c (rest_of_handler_reorder_blocks): Removed call to
RTL level tracer pass.
* passes.c (init_optimization_passes): Move pass_tracer from
after pass_rtl_ifcvt to after pass_dce.
* tracer.c: Update copyright.
(layout_superblocks): Remove function.
(mark_bb_seen): New.
(bb_seen_p): New.
(count_insns): Change to estimate instructions in a Tree-SSA
statement.
(find_trace): Use bb_seen_p.
(tail_duplicate): Use bb_seen_p. Call add_phi_args_after_copy
after duplicate_block.
(tracer): Change prototype to match that of a pass execute
callback.
(gate_tracer): Rename from gate_handle_tracer.
(rest_of_handle_tracer): Remove function.
* rtl.h: Remove prototype for tracer.
* testsuite/gcc.dg/tree-prof/tracer-1.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128341 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 3473fb3c34a..64dc3bc8598 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2269,8 +2269,6 @@ extern void invert_br_probabilities (rtx); extern bool expensive_function_p (int); /* In cfgexpand.c */ extern void add_reg_br_prob_note (rtx last, int probability); -/* In tracer.c */ -extern void tracer (void); /* In var-tracking.c */ extern unsigned int variable_tracking_main (void); |