diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2014-11-12 09:05:29 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-11-12 09:05:29 +0000 |
commit | e02101ff0ada598ec3777dfecc56ee3b84fdfa31 (patch) | |
tree | d18714a2611c86230e08bcb51878ff13292e00cb /gcc/rtl.h | |
parent | 02c0ac4584fdd3cb7cce69148cd06a4374ae9e65 (diff) | |
download | gcc-e02101ff0ada598ec3777dfecc56ee3b84fdfa31.tar.gz |
rtl.h (rtx_function, [...]): Delete.
gcc/
* rtl.h (rtx_function, for_each_rtx, for_each_rtx_in_insn): Delete.
* rtlanal.c (non_rtx_starting_operands, for_each_rtx_1, for_each_rtx):
(for_each_rtx_in_insn): Delete.
(init_rtlanal): Remove initialization of non_rtx_starting_operands.
* df-core.c: Remove reference to for_each_rtx in comment.
From-SVN: r217407
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index fa38abb102e..3bfb6bf1c5f 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2885,10 +2885,6 @@ extern bool tablejump_p (const rtx_insn *, rtx *, rtx_jump_table_data **); extern int computed_jump_p (const_rtx); extern bool tls_referenced_p (const_rtx); -typedef int (*rtx_function) (rtx *, void *); -extern int for_each_rtx (rtx *, rtx_function, void *); -extern int for_each_rtx_in_insn (rtx_insn **, rtx_function, void *); - /* Callback for for_each_inc_dec, to process the autoinc operation OP within MEM that sets DEST to SRC + SRCOFF, or SRC if SRCOFF is NULL. The callback is passed the same opaque ARG passed to |