1 GCC gcc-3_3-branch regressions, 0 new, with your patch on 2003-03-16T23:47:54Z.

GCC regression checker geoffk@apple.com
Tue Mar 18 00:09:00 GMT 2003


With your recent patch, GCC gcc-3_3-branch has some regression test failures, 
which used to pass.  There are 0 new failures, and 1
failures that existed before and after that patch; 0 failures
have been fixed.

The old failures, which were not fixed or introduced by your patch, are:
native g77.sum g77.dg/bprob/g77-bprob-1.f

For more information, see http://gcc.gnu.org/regtest/.

-------------- next part --------------
ChangeLog entries since last run on 2003-03-16T19:08:51Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog	Sun Mar 16 11:09:46 2003
+++ gcc/gcc/ChangeLog	Sun Mar 16 15:48:50 2003
@@ -1,3 +1,40 @@
+2003-03-16  Richard Henderson  <rth@redhat.com>
+
+	PR opt/6798
+        * cfgcleanup.c: Include params.h.
+        (try_crossjump_bb): Use PARAM_MAX_CROSSJUMP_EDGES.  Fix test for
+        too many outgoing edges from a block.
+        * Makefile.in (cfgcleanup.o): Depend on PARAMS_H.
+        * params.def (max-crossjump-edges): New.
+        * doc/invoke.texi: Document it.
+
+2003-03-16  Richard Henderson  <rth@redhat.com>
+
+        * config/i386/i386.md (movstrictqi, movstrictqi_1): Check
+        optimize_size as well.
+
+2003-03-16  Stephane Carrez  <stcarrez@nerim.fr>
+
+	* config/m68hc11/m68hc11.c (print_operand): Handle 'b' modifier
+	for D register to specify the low part of it, aka B.
+	(m68hc11_gen_movhi): Use REG_WAS_0 note and increment or decrement
+	the register if we are loading 1 or -1 to it; avoid using temp
+	register when moving X/Y to Y/X.
+	(m68hc11_gen_movqi): Likewise.
+	(m68hc11_check_z_replacement): Fix last insn setting for compare case.
+
+2003-03-14  Mark Mitchell  <mark@codesourcery.com>
+
+	PR optimization/9016
+	* config/i386/i386.c (ix86_expand_move): Force more CONST_DOUBLEs
+	into the constant pool.
+
+2003-03-16  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
+
+        PR target/9164
+        * tree.c (get_narrower): For extensions with unchanged bit number,
+        return the unsignedness of the outer mode.
+
 2003-03-16  Roger Sayle  <roger@eyesopen.com>
 
 	* c-typeck.c (build_component_ref):  Turn "for" into "do .. while"
--- /Users/regress/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog	Sat Mar 15 13:22:06 2003
+++ gcc/gcc/testsuite/ChangeLog	Sun Mar 16 15:49:08 2003
@@ -1,3 +1,7 @@
+2003-03-16  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
+
+        * gcc.c-torture/execute/20030316-1.c: New test case.
+
 2003-03-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
 	* g++.old-deja/g++.mike/eh33.C: Remove xfail for hppa*-*-*.

ChangeLog entries between 2003-03-16T19:08:51Z and the last time everything
passed, on 2003-03-15T02:00:06Z:
--- /Users/regress/tbox/changelog_pass/gcc/gcc/ChangeLog	Fri Mar 14 18:01:11 2003
+++ gcc/gcc/ChangeLog	Sun Mar 16 11:09:46 2003
@@ -1,3 +1,52 @@
+2003-03-16  Roger Sayle  <roger@eyesopen.com>
+
+	* c-typeck.c (build_component_ref):  Turn "for" into "do .. while"
+	to avoid "may be used uninitialized" warning on ia64-hpux.
+	* config/ia64/ia64-c.c: Include "tm_p.h" for function prototypes.
+
+2003-03-16  Neil Booth  <neil@daikokuya.co.uk>
+
+	* cppinit.c: Remove support of -A-.
+	* doc/cppopts.texi: Remove documentation of -A-.
+
+2003-03-15  Richard Henderson  <rth@redhat.com>
+
+	2003-01-14  Richard Henderson  <rth@redhat.com>
+        * config/alpha/alpha.c (alpha_expand_mov): Use correct mode
+        for force_const_mem.
+
+2003-03-15  Richard Henderson  <rth@redhat.com>
+
+	PR target/9700
+	* config/alpha/alpha.c (alpha_va_start): Account for 
+	current_function_pretend_args_size in the AP offset.
+
+2003-03-15  Jason Merrill  <jason@redhat.com>
+
+	PR debug/6387
+	* dwarf2out.c (dwarf2out_decl): If we're at -g1, just stick nested
+	function DIEs at toplevel.
+	(decls_for_scope): At -g1, don't descend into subblocks.
+
+2003-03-15  Ulrich Weigand  <uweigand@de.ibm.com>
+
+	* varasm.c (struct rtx_const): Change type of un.addr member
+	to struct holding an additional 'symbol' member.
+	(decode_rtx_const): Re-enable optimization to count SYMBOL_REFs
+	with equal string addresses as equal.
+	(simplify_subtraction): Adapt to struct rtx_const change.
+
+2003-03-15  Glen Nakamura  <glen@imodulo.com>
+
+	* reload1.c (choose_reload_regs): Use && instead of ||
+	with REG_CANNOT_CHANGE_MODE_P condition.
+
+2003-03-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
+
+	PR optimization/9387
+	* function.c (thread_prologue_and_epilogue_insns): Use redirect jump
+	for conditional returns.
+
 2003-03-14  Jason Merrill  <jason@redhat.com>
 
 	PR optimization/6871
--- /Users/regress/tbox/changelog_pass/gcc/gcc/cp/ChangeLog	Thu Mar 13 17:24:49 2003
+++ gcc/gcc/cp/ChangeLog	Sat Mar 15 03:56:34 2003
@@ -1,3 +1,12 @@
+2003-03-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+	PR c++/6440
+	* pt.c (maybe_process_partial_specialization): Handle
+	member class template when enclosing class template is
+	explicit specialized.
+	(most_general_template): Stop looking when DECL is already
+	specialized.
+
 2003-03-13  Jason Merrill  <jason@redhat.com>
 
 	PR c++/9420
--- /Users/regress/tbox/changelog_pass/gcc/gcc/f/ChangeLog	Mon Mar  3 16:33:17 2003
+++ gcc/gcc/f/ChangeLog	Sat Mar 15 03:56:36 2003
@@ -1,3 +1,8 @@
+2003-03-15  Andreas Jaeger  <aj@suse.de>
+
+	* g77spec.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
+	(DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
+
 2003-02-21  Toon Moene  <toon@moene.indiv.nluug.nl>
 
 	* news.texi: Document fixing PR fortran/9038.
--- /Users/regress/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog	Fri Mar 14 09:46:58 2003
+++ gcc/gcc/testsuite/ChangeLog	Sat Mar 15 13:22:06 2003
@@ -1,3 +1,14 @@
+2003-03-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	* g++.old-deja/g++.mike/eh33.C: Remove xfail for hppa*-*-*.
+	* g++.old-deja/g++.mike/eh50.C: Likewise.
+
+2003-03-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+	PR c++/6440
+	* g++.dg/template/spec7.C: New test.
+	* g++.dg/template/spec8.C: Likewise.
+
 2003-03-14  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
 	* gcc.c-torture/compile/20030314-1.c: New test.
-------------- next part --------------
-- 
Geoffrey Keating <geoffk@apple.com> 
(via an automated GCC regression-testing script.)


More information about the Gcc-regression mailing list