diff options
author | zadeck <zadeck@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-11 18:22:49 +0000 |
---|---|---|
committer | zadeck <zadeck@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-11 18:22:49 +0000 |
commit | a3de79f9659894d357963f733bf28efe5fadd39e (patch) | |
tree | 7387ce6b4b20bae39a75e179d912f80580819c22 /gcc/df-core.c | |
parent | 3072d30e7983a3ca5ad030f1f98a5c39bcc2c07b (diff) | |
download | gcc-a3de79f9659894d357963f733bf28efe5fadd39e.tar.gz |
2007-06-11 Kenneth Zadeck <zadeck@naturalbridge.com>
* df-scan.c (df_insn_delete, df_insn_rescan, df_insn_rescan_all,
df_process_deferred_rescans, df_notes_rescan): Fixed spelling of
word "deferred".
* df-core.c: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125625 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df-core.c')
-rw-r--r-- | gcc/df-core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/df-core.c b/gcc/df-core.c index 56eb0390284..24c57e18392 100644 --- a/gcc/df-core.c +++ b/gcc/df-core.c @@ -114,7 +114,7 @@ optimizations that reorder blocks invalidate the bitvector. DF_ANALYZE causes all of the defined problems to be (re)solved. When DF_ANALYZE is completes, the IN and OUT sets for each basic block contain the computer information. The DF_*_BB_INFO macros can be used -to access these bitvectors. All defered rescannings are down before +to access these bitvectors. All deferred rescannings are down before the transfer functions are recompited. DF_DUMP can then be called to dump the information produce to some @@ -126,7 +126,7 @@ can all be called separately as part of a larger dump function. DF_FINISH_PASS causes df_remove_problem to be called on all of the optional problems. It also causes any insns whose scanning has been -defered to be rescanned as well as clears all of the changeable flags. +deferred to be rescanned as well as clears all of the changeable flags. Setting the pass manager TODO_df_finish flag causes this function to be run. However, the pass manager will call df_finish_pass AFTER the pass dumping has been done, so if you want to see the results of the @@ -190,7 +190,7 @@ There are four ways of doing the incremental scanning: To enable this mode, call df_set_flags (DF_DEFER_INSN_RESCAN). (This mode can be cleared by calling df_clear_flags - (DF_DEFER_INSN_RESCAN) but this does not cause the defered insns to + (DF_DEFER_INSN_RESCAN) but this does not cause the deferred insns to be rescanned. 3) Total rescanning - In this mode the rescanning is disabled. |