Regression for trunk on i686-pc-linux-gnu

Autocrasher autocrasher@devphil.com
Wed Oct 20 21:39:00 GMT 2004


1 new FAIL's (4 total) have appeared for i686-pc-linux-gnu:
    g++.sum g++.dg/expr/cast2.C
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/ChangeLog current/CL/ChangeLog
--- previous/CL/ChangeLog	2004-10-19 16:10:02.000000000 -0400
+++ current/CL/ChangeLog	2004-10-20 16:10:02.000000000 -0400
@@ -1 +1,5 @@
+2004-10-19  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
+
+	* MAINTAINERS (Write After Approval): Add myself.
+
 2004-10-19  Kazu Hirata  <kazu@cs.umass.edu>
diff -u1r previous/CL/gcc/ChangeLog current/CL/gcc/ChangeLog
--- previous/CL/gcc/ChangeLog	2004-10-20 01:40:03.000000000 -0400
+++ current/CL/gcc/ChangeLog	2004-10-20 16:10:03.000000000 -0400
@@ -2,2 +2,22 @@
 
+	* expr.c (store_expr): Remove code that is run when
+	want_value & 1 is nonzero.
+
+2004-10-20  Mark Mitchell  <mark@codesourcery.com>
+
+	* gthr-posix.h (__gthread_active_p): Use __extension__ around cast
+	from function pointer to void *.
+
+2004-10-20  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+	PR target/18032
+	* config/sh/sh.c (sh_expand_epilogue): Emit a blockage insn before
+	the frame pointer adjustment when exception handling is enabled.
+
+2004-10-20  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* stor-layout.c: Fix a comment typo.
+
+2004-10-20  Kazu Hirata  <kazu@cs.umass.edu>
+
 	* expr.c (store_field): Remove two arguments value_mode and
diff -u1r previous/CL/gcc/cp/ChangeLog current/CL/gcc/cp/ChangeLog
--- previous/CL/gcc/cp/ChangeLog	2004-10-20 01:40:11.000000000 -0400
+++ current/CL/gcc/cp/ChangeLog	2004-10-20 16:10:12.000000000 -0400
@@ -1 +1,64 @@
+2004-10-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+	PR c++/13495
+	* decl.c (make_unbound_class_template): Add PARM_LIST parameter.
+	* cp-tree.h (make_unbound_class_template): Adjust prototype.
+	* parser.c (cp_parser_lookup_name): Adjust call to
+	make_unbound_class_template.
+	(cp_parser_single_declaration): Handle member class of class
+	template as template friend parsing correctly.
+	* friend.c (is_friend): Call is_specialization_of_friend for
+	template friend class.
+	(make_friend_class): Handle member class of class template as
+	template friend.
+	* pt.c (is_specialization_of_friend): Likewise.
+	(instantiate_class_template): Likewise.
+	(tsubst): Adjust call to make_unbound_class_template.
+
+2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* typeck.c (composite_pointer_type): Add comment about DR 195
+	(build_reinterpret_cast_1): Add for_reinterpret_cast_p parameter.
+	Allow function pointer conversions that DR195 suggests.
+	(build_reinterpret_cast, build_c_cast): Update
+	build_reinterpret_cast_1 calls. 
+
+2004-10-20  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* call.c, typeck.c: Fix comment typos.
+
+2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* parser.c (cp_token_position): New typedef. Define VEC thereof.
+	(struct cp_lexer): Allow buffer and buffer_end to be NULL. Make
+	next_token and last_token cp_token_position. Make saved_tokens a
+	VEC(cp_token_position).
+	(eof_token): New static variable.
+	(CP_SAVED_TOKENS_SIZE): Rename to ...
+	(CP_SAVED_TOKEN_STACK): ... here.
+	(cp_lexer_new_main): Adjust main lexer creation and buffer
+	filling.
+	(cp_lexer_new_from_tokens): Do not copy the tokens, merely point
+	to the parent buffer.  Do not append eof token.
+	(cp_lexer_destroy): Only free buffer if non-NULL. Free token
+	stack.
+	(cp_lexer_next_token, cp_lexer_prev_token): Remove.
+	(cp_lexer_token_position, cp_lexer_token_at): New.
+	(cp_lexer_saving_tokens): Adjust. Make inline.
+	(cp_lexer_advance_token, cp_lexer_token_difference): Remove.
+	(cp_lexer_peek_token_emit_debug_info): Fold into ...
+	(cp_lexer_peek_token): ... here.
+	(cp_lexer_peek_nth_token): Don't peek past EOF.
+	(cp_lexer_consume_token): Set next_token to eof_token, if reaching
+	EOF.
+	(cp_lexer_purge_token): Adjust eof setting.
+	(cp_lexer_purge_tokens_after): Likewise.
+	(cp_lexer_save_tokens): Push next_token directly.
+	(cp_lexer_commit_tokens): Adjust.
+	(cp_lexer_rollback_tokens): Pop next_token directly.
+	(cp_parser_check_for_invalid_template_id): Adjust token purging.
+	(cp_parser_translation_unit): Do not consume the EOF.
+	(cp_parser_nested_name_specifier_opt): Adjust token purging.
+	(cp_parser_template_id, cp_parser_template_name): Likewise.
+
 2004-10-19  Mark Mitchell  <mark@codesourcery.com>
diff -u1r previous/CL/gcc/testsuite/ChangeLog current/CL/gcc/testsuite/ChangeLog
--- previous/CL/gcc/testsuite/ChangeLog	2004-10-20 01:40:12.000000000 -0400
+++ current/CL/gcc/testsuite/ChangeLog	2004-10-20 16:10:13.000000000 -0400
@@ -1 +1,20 @@
+2004-10-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+	PR c++/13495
+	* g++.dg/template/memfriend9.C: New test.
+	* g++.dg/template/memfriend10.C: Likewise.
+	* g++.dg/template/memfriend11.C: Likewise.
+	* g++.dg/template/memfriend12.C: Likewise.
+	* g++.dg/template/memfriend13.C: Likewise.
+	* g++.dg/template/memfriend14.C: Likewise.
+	* g++.dg/template/memfriend15.C: Likewise.
+	* g++.dg/template/memfriend16.C: Likewise.
+	* g++.dg/template/memfriend17.C: Likewise.
+	* g++.old-deja/g++.pt/friend44.C: Remove bogus error.
+
+2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* g++.dg/conversion/dr195.C: New.
+	* g++.old-deja/g++.mike/p10148.C: Remove ill-formed cast.
+
 2004-10-20  Ben Elliston  <bje@au.ibm.com>


More information about the Gcc-regression mailing list