diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/df-core.c | 6 | ||||
-rw-r--r-- | gcc/df-scan.c | 12 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 10 |
4 files changed, 21 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2b2134c..8b64afc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +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. + 2007-06-11 Daniel Berlin <dberlin@dberlin.org> * Merge dataflow-branch into mainline (see ChangeLog.dataflow) diff --git a/gcc/df-core.c b/gcc/df-core.c index 56eb039..24c57e1 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. diff --git a/gcc/df-scan.c b/gcc/df-scan.c index 8c7cbf0..7b878fd 100644 --- a/gcc/df-scan.c +++ b/gcc/df-scan.c @@ -995,7 +995,7 @@ df_insn_delete (basic_block bb, unsigned int uid) insn_info = DF_INSN_UID_SAFE_GET (uid); - /* The client has defered rescanning. */ + /* The client has deferred rescanning. */ if (df->changeable_flags & DF_DEFER_INSN_RESCAN) { if (insn_info) @@ -1104,7 +1104,7 @@ df_insn_rescan (rtx insn) insn_info = DF_INSN_UID_SAFE_GET (uid); - /* The client has defered rescanning. */ + /* The client has deferred rescanning. */ if (df->changeable_flags & DF_DEFER_INSN_RESCAN) { if (!insn_info) @@ -1214,7 +1214,7 @@ df_insn_rescan_all (void) } -/* Process all of the defered rescans or deletions. */ +/* Process all of the deferred rescans or deletions. */ void df_process_deferred_rescans (void) @@ -1238,7 +1238,7 @@ df_process_deferred_rescans (void) } if (dump_file) - fprintf (dump_file, "starting the processing of defered insns\n"); + fprintf (dump_file, "starting the processing of deferred insns\n"); bitmap_copy (tmp, df->insns_to_delete); EXECUTE_IF_SET_IN_BITMAP (tmp, 0, uid, bi) @@ -1265,7 +1265,7 @@ df_process_deferred_rescans (void) } if (dump_file) - fprintf (dump_file, "ending the processing of defered insns\n"); + fprintf (dump_file, "ending the processing of deferred insns\n"); BITMAP_FREE (tmp); bitmap_clear (df->insns_to_delete); @@ -2009,7 +2009,7 @@ df_notes_rescan (rtx insn) insn_info = DF_INSN_UID_SAFE_GET (INSN_UID(insn)); - /* The client has defered rescanning. */ + /* The client has deferred rescanning. */ if (df->changeable_flags & DF_DEFER_INSN_RESCAN) { if (!insn_info) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4b014c8..547db8c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-06-11 Paolo Bonzini <bonzini@gnu.org> + + PR rtl-optimization/31025 + * gfortran.dg/pr31025.f90: New. + 2007-06-11 Uros Bizjak <ubizjak@gmail.com> PR target/32280 @@ -2650,11 +2655,6 @@ PR tree-optimization/31041 * gcc.dg/vect/pr31041.c: New test. -2007-03-16 Paolo Bonzini <bonzini@gnu.org> - - PR rtl-optimization/31025 - * gfortran.dg/pr31025.f90: New. - 2007-03-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * g++.dg/warn/Wconversion-integer.C: New |