GCC build of HEAD failed for native with your patch on 2005-03-02T22:03:10Z.

GCC regression checker geoffk@apple.com
Wed Mar 2 22:27:00 GMT 2005


With your recent patch, GCC HEAD does not compile on:
 native
Attached is build output for those targets.

The build failures are new.

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

-------------- next part --------------
ChangeLog entries since last run on 2005-03-02T09:30:02Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog	Wed Mar  2 01:31:09 2005
+++ gcc/gcc/ChangeLog	Wed Mar  2 14:04:20 2005
@@ -1,3 +1,107 @@
+2005-03-02  J"orn Rennecke <joern.rennecke@st.com>
+
+	* recog.c (verify_changes, confirm_change_group): New functions,
+	broken out of apply_change_group.
+	(apply_change_group): Use them.
+	* recog.h (verify_change, confirm_change_group): Declare.
+	* rtl.h (redirect_jump_2): Declare.
+	* jump.c (redirect_exp, invert_exp): Delete.
+	(invert_exp_1): Take second parameter.  Return value.  Changed caller.
+	(redirect_jump_2): New function, broken out of redirect_jump.
+	(redirect_jump): Use redirect_jump_1 and redirect_jump_2.
+	(invert_jump): Use invert_jump_1 and redirect_jump_2.
+	* ifcvt.c (dead_or_predicable): Use redirect_jump_2.
+
+2005-03-02  Geoffrey Keating  <geoffk@apple.com>
+
+	* varasm.c (named_section): Use xstrdup rather than doing it by
+	hand.
+
+	* config/darwin8.h (LIB_SPEC): Switch -lmx and -lSystem.
+
+2005-03-02  Devang Patel  <dpatel@apple.com>
+	
+	Undo PR tree-optimization/18815 fix.
+	
+2005-03-02  Devang Patel  <dpatel@apple.com>
+
+	PR tree-optimization/18815
+	* tree-if-conv.c (combine_blocks): Adjust loop header edges for
+	loops with zero exit edges.
+	
+2005-03-02  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* cfg.c (connect_src, connect_dest, disconnect_src,
+	disconnct_dest): New.
+	(unchecked_make_edge, remove_edge, redirect_edge_succ,
+	redirect_edge_pred): Use the new functions.
+
+	* tree-ssa-dom.c (tree_ssa_dominator_optimize): Call
+	free_dominance_info only when needed.
+
+2005-03-02  David Edelsohn  <edelsohn@gnu.org>
+
+	PR target/20276
+	* config/rs6000/predicates.md (reg_or_cint64_operand): Fix typo.
+	(reg_or_sub_cint64_operand): Same.
+
+2005-03-02  Jeff Law  <law@redhat.com>
+
+	* tree-ssa-dom.c (tree_ssa_dominator_optimize): Fix setting of
+	CFG_ALTERED in the main DOM iteration loop.
+
+2005-03-02  Mark Mitchell  <mark@codesourcery.com>
+
+	PR c++/19916
+	* varasm.c (initializer_constant_valid_p): Allow conversions
+	between OFFSET_TYPEs.  Tidy.
+
+2005-03-02  Hans-Peter Nilsson  <hp@axis.com>
+
+	* config/cris/cris.md ("return"): Remove epilogue delay list
+	sanity check.
+
+2005-03-02  Daniel Jacobowitz  <dan@codesourcery.com>
+
+	* config/arm/linux-elf.h (ARM_FUNCTION_PROFILER): Do not use (PLT)
+	for Thumb.
+	* config/arm/netbsd-elf.h (ARM_FUNCTION_PROFILER): Likewise.
+
+2005-03-02  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* cfgloop.h, cfgloopanal.c, cfgloopmanip.c, conflict.c,
+	loop-init.c, loop-unroll.c, print-tree.c, reg-notes.def,
+	config/m68k/m68k.c, config/mips/mips.h,
+	config/rs6000/rs6000-protos.h, doc/contrib.texi,
+	doc/include/gcc-common.texi: Update copyright.
+
+	PR middle-end/18029 and PR middle-end/18030
+	* expr.c (optimize_bitfield_assignment_op): Add a special case
+	to handle BIT_IOR_EXPR and BIT_XOR_EXPR.
+
+	* fold-const.c (fold_unary): New.
+	(fold): Call fold_unary on unary expressions.
+
+2005-03-02  Richard Guenther  <rguenth@gcc.gnu.org>
+
+	* cgraph.h (struct cgraph_edge): Add prev_caller and
+	prev_callee fields.
+	(cgraph_node_remove_callees): Export.
+	* cgraph.c (cgraph_create_edge): Initialize prev_caller
+	and prev_callee.
+	(cgraph_edge_remove_callee): New function.
+	(cgraph_edge_remove_caller): Likewise.
+	(cgraph_remove_edge): Use.
+	(cgraph_redirect_edge_callee): Likewise.
+	(cgraph_node_remove_callees): New function.
+	(cgraph_node_remove_callers): Likewise.
+	(cgraph_remove_node): Use.
+	* tree-optimize.c (tree_rest_of_compilation): Use
+	cgraph_node_remove_callees instead of manual loop.
+	* cgraphunit.c (cgraph_finalize_function): Likewise.
+	(cgraph_expand_function): Likewise.
+	(cgraph_remove_unreachable_nodes): Likewise.
+
 2005-03-02  Joseph S. Myers  <joseph@codesourcery.com>
 
 	PR c/8927
--- /Users/regress/tbox/changelog_mail/gcc/gcc/cp/ChangeLog	Wed Mar  2 01:31:14 2005
+++ gcc/gcc/cp/ChangeLog	Wed Mar  2 14:04:25 2005
@@ -1,3 +1,9 @@
+2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
+
+	* name-lookup.c (push_overloaded_decl): Don't error if the new
+	decl matches the old one.
+	* decl.c (redeclaration_error_message): Likewise.
+
 2005-03-01  Per Bothner  <per@bothner.com>
 
 	* decl.c (finish_function): Use SET_EXPR_LOCATION instead of
--- /Users/regress/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog	Wed Mar  2 01:31:16 2005
+++ gcc/gcc/testsuite/ChangeLog	Wed Mar  2 14:04:28 2005
@@ -1,3 +1,12 @@
+2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
+
+	* g++.dg/overload/using2.C: New.
+
+2005-03-02  Mark Mitchell  <mark@codesourcery.com>
+
+	PR c++/19916
+	* g++.dg/init/ptrmem2.C: New test.
+
 2005-03-02  Joseph S. Myers  <joseph@codesourcery.com>
 
 	PR c/8927
--- /Users/regress/tbox/changelog_mail/gcc/libstdc++-v3/ChangeLog	Wed Mar  2 01:31:37 2005
+++ gcc/libstdc++-v3/ChangeLog	Wed Mar  2 14:04:47 2005
@@ -1,3 +1,30 @@
+2005-03-02  Douglas Gregor  <doug.gregor@gmail.com>
+
+        * include/tr1/functional (_Has_result_type): Cleanup.
+        (_Result_of_impl): Handle member data pointers correctly.
+        (reference_wrapper): Support invocation.
+        Move repetition code into new file include/tr1/repeat.h.
+        * include/tr1/functional_iterate.h (reference_wrapper): Support
+        invocation.  Cleanup long lines.
+        * include/tr1/ref_wrap_iterate.h (reference_wrapper): Declare
+        invocation operators.
+        * include/tr1/repeat.h: Code repetition header.
+        * include/Makefile.am: Add ref_wrap_iterate.h, repeat.h
+        * include/Makefile.in: Add ref_wrap_iterate.h, repeat.h
+        * testsuite/tr1/3_function_objects/reference_wrapper/invoke.cc:
+        New test of reference_wrapper invocation.
+        * testsuite/tr1/3_function_objects/reference_wrapper/typedefs.cc:
+        New test of reference_wrapper typedefs and base classes.
+        * testsuite/tr1/3_function_objects/result_of.cc: Trivial cleanup
+        (e-mail address).
+	
+2005-03-02  Douglas Gregor  <doug.gregor@gmail.com>
+
+        * include/tr1/function (result_of): New class template.
+        * include/tr1/functional/iterator.h: Implementation of TR1
+        result_of.
+        * testsuite/tr1/3_function_objects/result_of.cc: New test
+	
 2005-03-01  Vladimir Merzliakov  <wanderer@rsu.ru>
 
 	* testsuite/26_numerics/cmath/c99_classification_macros_c.cc: Tweak.

ChangeLog entries between 2005-03-02T09:30:02Z and the last time everything
passed, on 2005-03-02T09:30:02Z:
-------------- next part --------------
  -f libgcc.mk all
for d in libgcc; do \
  if [ -d $d ]; then true; else /bin/sh /Users/regress/tbox/cvs-gcc/gcc/gcc/../mkinstalldirs $d; fi; \
done
mkdir -p -- libgcc
if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi
./xgcc -B./ -B/Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/bin/ -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/include -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/sys-include -L/Users/regress/tbox/native/build/gcc/../ld -O2  -DIN_GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -Wa,-force_cpusubtype_ALL -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -I. -I. -I/Users/regress/tbox/cvs-gcc/gcc/gcc -I/Users/regress/tbox/cvs-gcc/gcc/gcc/. -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../include -I./../intl -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../libcpp/include  -DL_muldi3 -fvisibility=hidden -DHIDE_EXPORTS -c /Users/regress/tbox/cvs-gcc/gcc/gcc/libgcc2.c -o libgcc/./_muldi3.o
./xgcc -B./ -B/Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/bin/ -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/include -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/sys-include -L/Users/regress/tbox/native/build/gcc/../ld -O2  -DIN_GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -Wa,-force_cpusubtype_ALL -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -I. -I. -I/Users/regress/tbox/cvs-gcc/gcc/gcc -I/Users/regress/tbox/cvs-gcc/gcc/gcc/. -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../include -I./../intl -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../libcpp/include  -DL_negdi2 -fvisibility=hidden -DHIDE_EXPORTS -c /Users/regress/tbox/cvs-gcc/gcc/gcc/libgcc2.c -o libgcc/./_negdi2.o
./xgcc -B./ -B/Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/bin/ -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/include -isystem /Users/regress/tbox/objs/powerpc-apple-darwin7.4.0/sys-include -L/Users/regress/tbox/native/build/gcc/../ld -O2  -DIN_GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition  -isystem ./include  -Wa,-force_cpusubtype_ALL -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -I. -I. -I/Users/regress/tbox/cvs-gcc/gcc/gcc -I/Users/regress/tbox/cvs-gcc/gcc/gcc/. -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../include -I./../intl -I/Users/regress/tbox/cvs-gcc/gcc/gcc/../libcpp/include  -DL_lshrdi3 -fvisibility=hidden -DHIDE_EXPORTS -c /Users/regress/tbox/cvs-gcc/gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o
/Users/regress/tbox/cvs-gcc/gcc/gcc/libgcc2.c: In function '__lshrdi3':
/Users/regress/tbox/cvs-gcc/gcc/gcc/libgcc2.c:426: internal compiler error: Bus error
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [libgcc/./_lshrdi3.o] Error 1
make[2]: *** [libgcc.a] Error 2
make[1]: *** [stage1_build] Error 2
make: *** [bootstrap] Error 2
+ '[' -s gcc/.bad_compare ']'
+ exit 1
-------------- next part --------------
-- 
Geoffrey Keating <geoffk@apple.com> 
(via an automated GCC regression-testing script.)


More information about the Gcc-regression mailing list