build machinery (*.in) DJ Delorie dj@redhat.com
build machinery (*.in) Nathanael Nerode neroden@gcc.gnu.org
build machinery (*.in) Alexandre Oliva aoliva@redhat.com
-dataflow Paolo Bonzini bonzini@gnu.org
-dataflow Daniel Berlin dberlin@dberlin.org
docs co-maintainer Gerald Pfeifer gerald@pfeifer.com
docs co-maintainer Joseph Myers jsm@polyomino.org.uk
predict.def Jan Hubicka jh@suse.cz
auto-vectorizer Zdenek Dvorak dvorakz@suse.cz
auto-vectorizer Dorit Nuzman dorit@il.ibm.com
-Note individuals who maintain parts of the compiler need approval to check
+Note that individuals who maintain parts of the compiler need approval to check
in changes outside of the parts of the compiler they maintain.
Non-Algorithmic Maintainers
middle-end Richard Guenther rguenther@suse.de
libcpp Tom Tromey tromey@redhat.com
-Note individuals who maintain parts of the compiler as non-algorithmic
-maintainer need approval to check in algorithmic changes or changes
+Note that individuals who maintain parts of the compiler as non-algorithmic
+maintainers need approval to check in algorithmic changes or changes
outside of the parts of the compiler they maintain.
+ Non-Autopoiesis Maintainers
+
+dataflow Daniel Berlin dberlin@dberlin.org
+dataflow Paolo Bonzini bonzini@gnu.org
+dataflow Seonbae Park seongbae.park@gmail.com
+dataflow Kenneth Zadeck zadeck@naturalbridge.com
+(FIXME: The fortran people need to be added here since they follow this rule)
+
+
+Note that individuals who maintain parts of the compiler as
+non-autopoiesis maintainers need approval changes outside of the parts
+of the compiler they maintain and also need approval for their own
+patches.
+
Write After Approval (last name alphabetical order)
Mark G. Adams mark.g.adams@sympatico.ca
Jeffrey D. Oldham oldham@codesourcery.com
Andrea Ornstein andrea.ornstein@st.com
Rainer Orth ro@TechFak.Uni-Bielefeld.DE
+Seonbae Park seongbae.park@gmail.com
Devang Patel dpatel@apple.com
Alexandre Petit-Bianco apbianco@redhat.com
Nicolas Pitre nico@cam.org
+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)
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
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
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.
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)
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)
}
-/* Process all of the defered rescans or deletions. */
+/* Process all of the deferred rescans or deletions. */
void
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)
}
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);
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)
+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
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