GCC build failed for native with your patch on 2002-02-07T09:58:18Z.
GCC regression checker
regress@maat.cygnus.com
Thu Feb 7 04:13:00 GMT 2002
With your recent patch, GCC does not compile on:
native
Attached is build output for those targets.
The last time the regression tests were run, GCC did not compile either,
so the problem might not be caused by your patch.
There were also 0 new regression test failures, and 2
failures that existed before and after that patch; 6 failures
have been fixed.
The old failures, which were not fixed or introduced by your patch, are:
powerpc-eabisim gcc.sum gcc.dg/debug/dwarf2-1.c
powerpc-eabisim gdb.sum gdb.base/funcargs.exp:
The fixed failures are:
powerpc-eabisim gcc.sum gcc.dg/noncompile/920507-1.c
powerpc-eabisim gcc.sum gcc.dg/noncompile/920721-2.c
powerpc-eabisim gcc.sum gcc.dg/noncompile/label-lineno-1.c
powerpc-eabisim objc.sum objc.dg/const-str-1.m
powerpc-eabisim objc.sum objc.dg/const-str-2.m
powerpc-eabisim objc.sum objc.dg/method-1.m
For more information, see <http://people.redhat.com/geoffk/gcc-regression/>.
-------------- next part --------------
ChangeLog entries since last run on 2002-02-07T07:42:53Z:
--- /maat/heart/tbox/changelog_mail/gcc/gcc/ChangeLog Wed Feb 6 23:43:28 2002
+++ gcc/gcc/ChangeLog Thu Feb 7 01:58:36 2002
@@ -1,3 +1,8 @@
+2002-02-07 Richard Henderson <rth@redhat.com>
+
+ * alias.c (find_base_value): Recall base values for fixed hard regs.
+ * loop.c (loop_regs_update): Don't use single_set on non-insns.
+
2002-02-07 Alexandre Oliva <aoliva@redhat.com>
* config/mips/mips.md (define_delay) [mips16]: Adjust required
--- /maat/heart/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog Wed Feb 6 18:54:00 2002
+++ gcc/gcc/testsuite/ChangeLog Thu Feb 7 01:58:49 2002
@@ -1,3 +1,10 @@
+2002-02-07 Richard Henderson <rth@redhat.com>
+
+ * gcc.dg/debug/dwarf2-1.c: Update for return warnings.
+ * gcc.dg/noncompile/920507-1.c, gcc.dg/noncompile/920721-2.c,
+ gcc.dg/noncompile/label-lineno-1.c, objc.dg/const-str-1.m,
+ objc.dg/const-str-2.m, objc.dg/method-1.m: Likewise.
+
2002-02-06 Richard Henderson <rth@redhat.com>
* gcc.dg/asm-4.c: Add case with an unnamed operand in the middle.
ChangeLog entries between 2002-02-07T07:42:53Z and the last time everything
passed, on 2002-02-06T17:20:23Z:
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog Wed Feb 6 02:21:46 2002
+++ gcc/gcc/ChangeLog Wed Feb 6 23:43:28 2002
@@ -1,3 +1,79 @@
+2002-02-07 Alexandre Oliva <aoliva@redhat.com>
+
+ * config/mips/mips.md (define_delay) [mips16]: Adjust required
+ length.
+
+2002-02-06 Richard Henderson <rth@redhat.com>
+
+ PR c/5609
+ * stmt.c (resolve_operand_name_1): Take more care with mixed
+ named and unnamed operands.
+
+2002-02-06 Janis Johnson <janis187@us.ibm.com>
+ Jan Hubicka <jh@suse.cz>
+
+ * loop.c (remove_constant_addition): Avoid clobbering a shared
+ CONST expression.
+
+2002-02-06 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * config.gcc (s390x-*-linux*): Add t-linux64 makefile fragment.
+ * config/s390/t-linux64: New file.
+ * config/s390/libgcc-glibc.ver: New file.
+
+2002-02-06 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * config/s390/linux64.h: Delete file.
+ * config/s390/s390x.h: New file.
+ * config.gcc (s390x-*-linux*): Use s390x.h instead of linux64.h
+ as target header file.
+ * config/s390/linux.h (TARGET_VERSION): Define depending on
+ DEFAULT_TARGET_64BIT.
+ (CPP_SPEC, ASM_SPEC, LINK_SPEC): Likewise.
+ (SIZE_TYPE, PTRDIFF_TYPE): Likewise.
+ (NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_PTRDIFF_TYPE): Define.
+ (CPP_ARCH31_SPEC, CPP_ARCH64_SPEC): New defines.
+ (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC): New defines.
+ (EXTRA_SPEC): New define.
+ * config/s390/s390.h (TARGET_VERSION): Define depending on
+ DEFAULT_TARGET_64BIT.
+ (MASK_RETURN_ADDR): Add run-time check for TARGET_64BIT.
+
+2002-02-06 Jason Merrill <jason@redhat.com>
+
+ * c-decl.c (finish_function): Warn about a non-void function with
+ no return statement and no abnormal exit.
+ (current_function_returns_abnormally): New variable.
+ (start_function): Clear it.
+ (struct c_language_function): Add returns_abnormally.
+ (push_c_function_context): Save it.
+ (pop_c_function_context): Restore it.
+ (builtin_function): Set TREE_THIS_VOLATILE on return fns.
+ (grokdeclarator): Set C_FUNCTION_IMPLICIT_INT on functions without
+ an explicit return type.
+ * c-tree.h: Declare current_function_returns_abnormally.
+ (C_FUNCTION_IMPLICIT_INT): New macro.
+ * c-typeck.c (build_function_call): Set it.
+ (c_expand_return): Set current_function_returns_value even if the
+ value is erroneous.
+
+2002-02-06 Jakub Jelinek <jakub@redhat.com>
+
+ PR c/5420:
+ * c-common.c (c_unsafe_for_reeval): Make COMPOUND_LITERAL_EXPR
+ unsafe for reevaluation.
+
+2002-02-06 Jakub Jelinek <jakub@redhat.com>
+
+ PR c/5482:
+ * c-common.c (c_expand_expr) [STMT_EXPR]: If last expression is not
+ EXPR_STMT, but COMPOUND_STMT, recurse into it.
+
+2002-02-06 Richard Henderson <rth@redhat.com>
+
+ * cfganal.c (keep_with_call_p): Source for fixed_reg dest must
+ be a general_operand. Dest for function value must be a pseudo.
+
2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
* dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
--- /maat/heart/tbox/changelog_pass/gcc/gcc/f/ChangeLog Mon Feb 4 10:46:30 2002
+++ gcc/gcc/f/ChangeLog Wed Feb 6 14:07:26 2002
@@ -1,3 +1,13 @@
+2002-02-06 Toon Moene <toon@moene.indiv.nluug.nl>
+
+ PR fortran/4730 fortran/5473
+ * com.c (ffecom_expr_): Deal with %VAL constructs.
+ * intrin.c (ffeintrin_check_): Handle 'N' constraints for intrinsics,
+ to indicate "no larger than default kind" integers and logicals.
+ * intrin.def: Use 'N' constraints in table of intrinsics.
+ * intdoc.c: Document this constraint.
+ * intdoc.texi: Regenerated.
+
2002-02-04 Philipp Thomas <pthomas@suse.de>
* implic.c lex.c stb.c ste.c stu.c: Update copyright dates.
--- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog Wed Feb 6 09:20:53 2002
+++ gcc/gcc/testsuite/ChangeLog Wed Feb 6 18:54:00 2002
@@ -1,3 +1,20 @@
+2002-02-06 Richard Henderson <rth@redhat.com>
+
+ * gcc.dg/asm-4.c: Add case with an unnamed operand in the middle.
+
+2002-02-06 Janis Johnson <janis187@us.ibm.com>
+
+ * gcc.dg/20020206-1.c: New test.
+
+2002-02-06 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.c-torture/execute/20020206-1.c: New test.
+
+ * gcc.c-torture/execute/20020206-2.c: New test.
+
+ PR optimization/5429:
+ * gcc.c-torture/compile/20020206-1.c: New test.
+
2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
* g++.dg/ext/align1.C: Do not use an explicit alignment value
--- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog Wed Feb 6 06:46:28 2002
+++ gcc/libstdc++-v3/ChangeLog Wed Feb 6 16:19:55 2002
@@ -1,3 +1,19 @@
+2002-02-06 Loren Rittle <ljrittle@acm.org>
+
+ * config/locale/c_locale_generic.cc: Do not trust
+ _GLIBCPP_HAVE_STRTOF or _GLIBCPP_HAVE_STRTOLD as
+ set by configure.
+
+2002-02-06 Loren Rittle <ljrittle@acm.org>
+
+ * acinclude.m4: Add C++ linkage check for strtof.
+ * aclocal.m4: Rebuilt.
+ * config.h.in: Rebuilt.
+ * configure: Rebuilt.
+ * config/locale/c_locale_generic.cc: Conditionally include
+ <ieeefp.h>. Improve handling and error checking of float
+ and long double input for non-C99 configurations.
+
2002-02-06 Paolo Carlini <pcarlini@unitus.it>
* include/bits/locale_facets.tcc (money_get::do_get(string)):
--- /maat/heart/tbox/changelog_pass/gcc/boehm-gc/ChangeLog Fri Feb 1 20:39:57 2002
+++ gcc/boehm-gc/ChangeLog Wed Feb 6 21:27:39 2002
@@ -1,3 +1,13 @@
+2002-02-06 Adam Megacz <adam@xwt.org>
+
+ * boehm-gc/include/gc.h: (GC_CreateThread) This function is
+ now exposed on all Win32 platforms.
+ * boehm-gc/win32_threads.c: (GC_CreateThread) This now
+ compiles on Win32; it invokes CreateThread() if GC is built
+ as a DLL; otherwise it registers the thread.
+ * boehm-gc/misc.c (GC_init): Initialize GC_allocate_ml in case
+ libgcjgc was not built as a DLL.
+
2002-02-01 Adam Megacz <adam@xwt.org>
* boehm-gc on win32 now automatically detects if it is being built
--- /maat/heart/tbox/changelog_pass/gcc/libjava/ChangeLog Tue Feb 5 18:29:35 2002
+++ gcc/libjava/ChangeLog Wed Feb 6 21:27:48 2002
@@ -1,3 +1,60 @@
+2002-02-06 Adam Megacz <adam@xwt.org>
+
+ * configure.in: Changed mingw) to *mingw*).
+ * win32.cc: Created this file.
+ * win32.h: Created this file.
+ * win32.cc, prims.cc, win32.h (win32_exception_handler): Moved
+ win32_exception_handler from prims.cc to win32.cc, added
+ header in win32.h.
+ * prims.cc: removed some #ifdef-WIN32'd headers which are no
+ longer needed now that we have platform.h
+
+2002-02-06 Adam Megacz <adam@xwt.org>
+
+ * shs.h, shs.cc, natSimpleSHSStream.cc: use uint<n>_t instead
+ of LONG and BYTE
+
+2002-02-06 Adam Megacz <adam@xwt.org>
+
+ * name-finder.h: don't #include sys/wait.h unless HAVE_SYS_WAIT_H
+
+2002-02-06 Anthony Green <green@redhat.com>
+
+ * java/net/natPlainSocketImpl.cc: Fix DISABLE_JAVA_NET targets.
+ Implement missing method stubs.
+ java/net/natPlainDatagramSocketImpl.cc: Fix DISABLE_JAVA_NET
+ targets.
+ * java/lang/natSystem.cc (getSystemTimeZone): Some targets have no
+ concept of timezones.
+ (init_properties): Don't refer to _Jv_Environment_Properties
+ when this feature is not available.
+ * include/config.h.in: Rebuilt.
+ * acconfig.h: Add DISABLE_MAIN_ARGS.
+ * prims.cc (_Jv_RunMain): Use DISABLE_MAIN_ARGS.
+ * configure: Rebuilt.
+ * configure.in: Add --disable-main-args option. Test for
+ opendir function. Replace AC_CHECK_SIZEOF with
+ AC_COMPILE_CHECK_SIZEOF.
+ * java/io/natFile.cc (performList): Check HAVE_OPENDIR.
+ * aclocal.m4: Rebuilt.
+ * acinclude.m4: Add AC_COMPILE_CHECK_SIZEOF.
+
+2002-02-06 Tom Tromey <tromey@redhat.com>
+
+ * verify.cc (require_array_type): If argument is a null array of
+ references, return null as the element type.
+
+2002-02-06 Mark Wielaard <mark@klomp.org>
+
+ * verify.cc (verify_instructions_0) [op_dup2]: Actually push the
+ duplicate of a wide type.
+
+2002-02-06 Tom Tromey <tromey@redhat.com>
+
+ * verify.cc (type::isnull): New method.
+ (require_array_type): Handle case where array is null.
+ (verify_instructions_0) [op_arraylength]: Likewise.
+
2002-02-05 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* configure.in: Set up PLATFORMOBJS not PLATFORM_SPECIFIC_SOURCES.
-------------- next part --------------
In file included from /maat/heart/tbox/cvs-gcc/gcc/libjava/name-finder.cc:54:
/maat/heart/tbox/cvs-gcc/gcc/libjava/include/name-finder.h: In destructor
`_Jv_name_finder::~_Jv_name_finder()':
/maat/heart/tbox/cvs-gcc/gcc/libjava/include/name-finder.h:48: `waitpid'
undeclared (first use this function)
/maat/heart/tbox/cvs-gcc/gcc/libjava/include/name-finder.h:48: (Each undeclared
identifier is reported only once for each function it appears in.)
/maat/heart/tbox/cvs-gcc/gcc/libjava/name-finder.cc: In member function `void
_Jv_name_finder::toHex(void*)':
/maat/heart/tbox/cvs-gcc/gcc/libjava/name-finder.cc:115: warning: cast from
pointer to integer of different size
make[3]: *** [name-finder.lo] Error 1
make[3]: Leaving directory `/maat/heart/tbox/native/build/i686-pc-linux-gnu/libjava'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/maat/heart/tbox/native/build/i686-pc-linux-gnu/libjava'
make[1]: *** [all-target-libjava] Error 2
make[1]: Leaving directory `/maat/heart/tbox/native/build'
make: *** [bootstrap] Error 2
+ '[' -s gcc/.bad_compare ']'
+ exit 1
-------------- next part --------------
--
Geoffrey Keating <regress@maat.cygnus.com>
(via an automated GCC regression-testing script.)
More information about the Gcc-regression
mailing list