diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-12 09:05:29 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-12 09:05:29 +0000 |
commit | e506ea6276574d41af68a704c0c6a27e9cd08448 (patch) | |
tree | d18714a2611c86230e08bcb51878ff13292e00cb /gcc/df-core.c | |
parent | ef53eb98d0131d3b22cab8d53be3c675d80606c7 (diff) | |
download | gcc-e506ea6276574d41af68a704c0c6a27e9cd08448.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217407 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df-core.c')
-rw-r--r-- | gcc/df-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/df-core.c b/gcc/df-core.c index 691ed715a80..8e7a92fbcb4 100644 --- a/gcc/df-core.c +++ b/gcc/df-core.c @@ -181,7 +181,7 @@ There are four ways of doing the incremental scanning: next call to df_analyze or df_process_deferred_rescans. This mode is also used by a few passes that still rely on note_uses, - note_stores and for_each_rtx instead of using the DF data. This + note_stores and rtx iterators instead of using the DF data. This can be said to fall under case 1c. To enable this mode, call df_set_flags (DF_DEFER_INSN_RESCAN). |