Regression for trunk on i686-pc-linux-gnu

Autocrasher autocrasher@devphil.com
Wed Dec 1 22:34:00 GMT 2004


1 new FAIL's (3 total) have appeared for i686-pc-linux-gnu:
    libstdc++.sum 22_locale/moneypunct/3.cc
These tests passed the last time they were ran.

Attached are the ChangeLogs since the previous run.  Possibly a patch with
your name on it has caused the problem(s).


The full transcript is at http://www.devphil.com/build/
Specific problem logs at http://www.devphil.com/build/reports/tests-trunk/
(explanations of each file are on the main page; you probably want summary*)

Host was an athlon-xp (i686) system.  Target was specified as i686-pc-linux-gnu.

This particular run used standard (previously installed) binutils.

This email is generated by a machine, not sent from a person.  If you think
it's been sent to you in error, please see the gcc-regression list archives
for possible followup discussion; this could be legitimate or it could be a
false positive.  Also watch for email from the other regression testers and
check the logs from the known autobuilders.

If you write a response, please respect the Reply-To: header.


With love,
The Autocrasher (Phil's Builder Bot, version 2.1)

=========================================================================
-------------- next part --------------
diff -u1r previous/CL/gcc/ChangeLog current/CL/gcc/ChangeLog
--- previous/CL/gcc/ChangeLog	2004-12-01 01:40:04.000000000 -0500
+++ current/CL/gcc/ChangeLog	2004-12-01 16:10:03.000000000 -0500
@@ -1 +1,63 @@
+2004-12-01  Richard Henderson  <rth@redhat.com>
+
+	* expr.c (get_inner_reference): Fix thinko in REAL/IMAGPART_EXPR
+	offsetting.
+
+2004-12-01  Diego Novillo  <dnovillo@redhat.com>
+
+	PR tree-optimization/18291
+	* tree-ssa-copy.c (merge_alias_info): Fix merging of
+	flow-sensitive alias information.  If the new pointer has no
+	name tag, copy it from the original pointer.  Otherwise, make
+	sure that the pointed-to sets have a common intersection.
+
+2004-12-01  Richard Henderson  <rth@redhat.com>
+
+	PR rtl-opt/15289
+	* emit-rtl.c (gen_complex_constant_part): Remove.
+	(gen_realpart, gen_imagpart): Remove.
+	* rtl.h (gen_realpart, gen_imagpart): Remove.
+	* expmed.c (extract_bit_field): Remove CONCAT hack catering to
+	gen_realpart/gen_imagpart.
+	* expr.c (write_complex_part, read_complex_part): New.
+	(emit_move_via_alt_mode, emit_move_via_integer, emit_move_resolve_push,
+	emit_move_complex_push, emit_move_complex, emit_move_ccmode, 
+	emit_move_multi_word): Split out from ...
+	(emit_move_insn_1): ... here.
+	(expand_expr_real_1) <COMPLEX_EXPR>: Use write_complex_part.
+	<REALPART_EXPR, IMAGPART_EXPR>: Use read_complex_part.
+	* function.c (assign_parm_setup_reg): Hard-code transformations
+	instead of using gen_realpart/gen_imagpart.
+
+	* expr.c (optimize_bitfield_assignment_op): Split out from ... 
+	(expand_assignment): ... here.  Use handled_component_p to gate
+	get_inner_reference code.  Simplify MEM handling.  Special case
+	CONCAT destinations.
+
+	* expmed.c (store_bit_field): Use simplify_gen_subreg instead
+	of gen_rtx_SUBREG directly.
+
+2004-12-01  David Edelsohn  <edelsohn@gnu.org>
+	    Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR target/17107
+	* config/rs6000/rs6000.md (sge): Enable for non-TARGET_POWER.
+	(sgt): Same.
+	(sle): Same.
+	(slt): Same.
+
+2004-12-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR middle-end/18667
+	* params.c (set_param_value): Add range check.
+	* params.def: Add min and max values. Reformat long strings.
+	* params.h (struct param_info): Add min and max fields.
+	(enum compiler_param): Adjust DEFPARAM.
+	* toplev.c (lang_independent_params): Likewise.
+
+2004-12-01  Alan Modra  <amodra@bigpond.net.au>
+
+	PR target/12817
+	* config/rs6000/rs6000.c (rs6000_emit_prologue): Use r0 for vrsave.
+
 2004-12-01  Joseph S. Myers  <joseph@codesourcery.com>
diff -u1r previous/CL/gcc/cp/ChangeLog current/CL/gcc/cp/ChangeLog
--- previous/CL/gcc/cp/ChangeLog	2004-11-30 16:10:21.000000000 -0500
+++ current/CL/gcc/cp/ChangeLog	2004-12-01 16:10:13.000000000 -0500
@@ -1 +1,18 @@
+2004-12-01  Matt Austern  <austern@apple.com>
+
+	* name-lookup.c (namespace_binding): Omit alias check for global namespace.
+
+2004-12-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR c++/18729
+	* parser.c (cp_parser_class_name): Check decl's type is not
+	error_mark_node.
+
+	PR c++/17431
+	* call.c (standard_conversion): Add FLAGS parameter. Do not allow
+	derived to base conversion when checking constructor
+	accessibility.
+	(implicit_conversion): Pass FLAGS to standard_conversion.
+	(check_constructir_callable): Disallow conversion functions.
+
 2004-11-30  Kazu Hirata  <kazu@cs.umass.edu>
diff -u1r previous/CL/gcc/testsuite/ChangeLog current/CL/gcc/testsuite/ChangeLog
--- previous/CL/gcc/testsuite/ChangeLog	2004-12-01 01:40:16.000000000 -0500
+++ current/CL/gcc/testsuite/ChangeLog	2004-12-01 16:10:15.000000000 -0500
@@ -1 +1,17 @@
+2004-12-01  Diego Novillo  <dnovillo@redhat.com>
+
+	PR tree-optimization/18291
+	* testsuite/gcc.c-torture/compile/pr18291.c: New test.
+
+2004-12-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR C++/18729
+	* g++.dg/parse/crash20.C: New.
+
+	PR c++/17431
+	* g++.dg/overload/arg1.C: New.
+	* g++.dg/overload/arg2.C: New.
+	* g++.dg/overload/arg3.C: New.
+	* g++.dg/overload/arg4.C: New.
+
 2004-12-01  Joseph S. Myers  <joseph@codesourcery.com>
diff -u1r previous/CL/libstdc++-v3/ChangeLog current/CL/libstdc++-v3/ChangeLog
--- previous/CL/libstdc++-v3/ChangeLog	2004-11-30 01:40:42.000000000 -0500
+++ current/CL/libstdc++-v3/ChangeLog	2004-12-01 16:10:44.000000000 -0500
@@ -1 +1,12 @@
+2004-12-01  Paolo Carlini  <pcarlini@suse.de>
+
+	* testsuite/27_io/basic_istream/get/wchar_t/1.cc: New.
+	* testsuite/27_io/basic_istream/get/wchar_t/2.cc: Likewise.
+	* testsuite/27_io/basic_istream/get/wchar_t/3.cc: Likewise.
+	* testsuite/27_io/basic_istream/ignore/wchar_t/1.cc: Likewise.
+	* testsuite/27_io/basic_istream/ignore/wchar_t/2.cc: Likewise.
+	* testsuite/27_io/basic_istream/ignore/wchar_t/3.cc: Likewise.
+	* testsuite/27_io/basic_istream/ignore/wchar_t/6360.cc: Likewise.
+	* testsuite/27_io/basic_istream/ignore/wchar_t/7220.cc: Likewise.
+
 2004-11-29  Paolo Carlini  <pcarlini@suse.de>


More information about the Gcc-regression mailing list