7 GCC regressions, 7 new, with your patch on 2002-07-03T12:15:01Z.
GCC regression checker
regress@redhat.com
Wed Jul 3 08:40:00 GMT 2002
With your recent patch, GCC has some regression test failures, which
used to pass. There are 7 new failures, and 0
failures that existed before and after that patch; 0 failures
have been fixed.
The new failures are:
powerpc-eabisim objc.sum objc/execute/class_self-1.m
powerpc-eabisim objc.sum objc/execute/class_self-2.m
mips-elf objc.sum objc/execute/class_self-1.m
mips-elf objc.sum objc/execute/class_self-2.m
native gcc.sum gcc.dg/simd-1.c
native objc.sum objc/execute/class_self-1.m
native objc.sum objc/execute/class_self-2.m
For more information, see <http://people.redhat.com/geoffk/gcc-regression/>.
-------------- next part --------------
ChangeLog entries since last run on 2002-07-03T10:00:01Z:
--- /maat/heart/tbox/changelog_mail/gcc/gcc/cp/ChangeLog Tue Jul 2 09:25:27 2002
+++ gcc/gcc/cp/ChangeLog Wed Jul 3 05:15:16 2002
@@ -1,3 +1,7 @@
+2002-07-03 Graham Stott <graham.stott@btinternet.com>
+
+ * pt.c (instantiate_class_template): Fix typo.
+
2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
ChangeLog entries between 2002-07-03T10:00:01Z and the last time everything
passed, on 2002-07-02T08:09:54Z:
--- /maat/heart/tbox/changelog_pass/gcc/ChangeLog Mon Jul 1 18:14:38 2002
+++ gcc/ChangeLog Tue Jul 2 20:14:23 2002
@@ -1,3 +1,11 @@
+2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ * configure.in: Rearrange target Makefile fragment collection.
+
+ * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
+ cvs[src].
+ * configure.in: Ditto.
+
2002-07-01 Matt Kraai <kraai@alumni.cmu.edu>
* MAINTAINERS (Write After Approval): Update my e-mail address.
@@ -8,7 +16,7 @@
* Makefile.in (all-cgen): Remove; runs from its source directory.
(check-cgen, install-cgen, clean-cgen): Likewise.
- (all-opcodes): No not depend on all-cgen.
+ (all-opcodes): Do not depend on all-cgen.
(all-sim): Likewise.
2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog Mon Jul 1 21:43:01 2002
+++ gcc/gcc/ChangeLog Wed Jul 3 03:00:15 2002
@@ -1,3 +1,96 @@
+Wed Jul 3 10:24:16 2002 J"orn Rennecke <joern.rennecke@superh.com>
+
+ * optabs.c (expand_vector_binop): Don't store using a SUBREG smaller
+ than UNITS_PER_WORD, unless this is little endian and the first unit
+ in this word. Let extract_bit_field decide how to load an element.
+ Force arguments to matching mode.
+ (expand_vector_unop): Likewise.
+
+ * simplify-rtx.c (simplify_subreg): Don't assume that all vectors
+ consist of word_mode elements.
+ * c-typeck.c (build_binary_op): Allow vector types for BIT_AND_EXPR,
+ BIT_ANDTC_EXPR, BIT_IOR_EXPR and BIT_XOR_EXPR.
+ (build_unary_op): Allow vector types for BIT_NOT_EPR.
+ * emit-rtl.c (gen_lowpart_common): Use simplify_gen_subreg for
+ CONST_VECTOR.
+ * optabs.c (expand_vector_binop): Try to perform operation in
+ smaller vector modes with same inner size. Add handling of AND, IOR
+ and XOR. Reject expansion to inner-mode sized scalars when using
+ OPTAB_DIRECT. Use simplify_gen_subreg on constants.
+ (expand_vector_unop): Try to perform operation in smaller vector
+ modes with same inner size. Add handling of one's complement.
+ When there is no vector negate operation, try a vector subtract
+ operation. Use simplify_gen_subreg on constants.
+ * simplify-rtx.c (simplify_subreg): Add capability to convert vector
+ constants into smaller vectors with same inner mode, and to
+ integer CONST_DOUBLEs.
+
+2002-07-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * c-parse.in (parsing_iso_function_signature): New variable.
+ (extdef_1): New, copied from...
+ (extdef): ... here. Reset parsing_iso_function_signature.
+ (old_style_parm_decls): Reset parsing_iso_function_signature.
+ (old_style_parm_decls_1): New, copied from old_style_parm_decls.
+ Warn about ISO C style function definitions.
+ (nested_function, notype_nested_function): Reset
+ parsing_iso_function_signature.
+ (parmlist_2): Set parsing_iso_function_signature.
+
+ * doc/invoke.texi (-Wtraditional): Document new behavior.
+
+2002-07-02 Chris Demetriou <cgd@broadcom.com>
+
+ * config.gcc (mips*el-*-*): Use tm_defines to set
+ TARGET_ENDIAN_DEFAULT, rather than including mips/little.h.
+ * config/mips/little.h: Remove.
+
+2002-07-02 Devang Patel <dpatel@apple.com>
+
+ * objc/objc-act.c (adjust_type_for_id_default): Do not allow an
+ object as parameter. Prevent something like 'NSObject' to be
+ used as the type for a method argument.
+
+2002-07-03 Neil Booth <neil@daikokuya.co.uk>
+
+ * cpptrad.c: Update comment.
+
+2002-07-02 Neil Booth <neil@daikokuya.co.uk>
+
+ * doc/cpp.texi: Update for traditional preprocessing changes.
+ * goc/cppopts.texi: Similarly.
+
+2002-07-02 Ziemowit Laski <zlaski@apple.com>
+
+ * c-parse.in (designator): Enable designated initializers if ObjC.
+ (objcmessageexpr): Remove references to objc_receiver_context.
+ * objc/objc-act.h (objc_receiver_context): Remove decl.
+ * objc/objc-act.c (objc_receiver_context): Remove.
+ (lookup_objc_ivar): Test objc_method_context instead of
+ objc_receiver_context.
+
+Tue Jul 2 18:45:45 2002 J"orn Rennecke <joern.rennecke@superh.com>
+
+ * sh.c (print_operand, case 'N'): Allow zero vector.
+ (arith_reg_or_0_operand): Likewise.
+ (zero_vec_operand): Check for CONST_VECTOR, not PARALLEL.
+ * sh.h (CONST_COSTS): 0 has 0 cost. Check OUTER_CODE for
+ IOR, XOR, PLUS and SET and take their respective constant
+ ranges into account.
+ (PREDICATE_CODES, arith_reg_or_0_operand): Can be CONST_VECTOR.
+ * sh.md (subdi3, subdi3_media): Allow zero operand.
+ (movv8qi_i+3): Only vector that is not split is the zero vector.
+ Fix operand 3 to simplify_subreg.
+ (movv2si_i): Split alternative 1.
+ (mshfhi_l_di_rev+1): New splitter.
+
+2002-07-02 Neil Booth <neil@daikokuya.co.uk>
+
+ PR preprocessor/7029
+ * cppinit.c (cpp_handle_option): Suppress warnings with an
+ implicit "-w" for "-M" and "-MM".
+ * doc/cppopts.texi: Update.
+
2002-07-01 Roger Sayle <roger@eyesopen.com>
* config/sh/sh.c (sh_media_init_builtins): Change use of poisoned
--- /maat/heart/tbox/changelog_pass/gcc/gcc/cp/ChangeLog Mon Jul 1 21:43:05 2002
+++ gcc/gcc/cp/ChangeLog Tue Jul 2 09:25:27 2002
@@ -1,3 +1,16 @@
+2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
+
+ * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
+ by CVS conflict in my last patch.
+
+2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
+
+ PR c++/6716
+ * pt.c (can_complete_type_without_circularity): New function.
+ (instantiate_class_template): Use it.
+ * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
+ message due to incomplete fields.
+
2002-07-01 Mark Mitchell <mark@codesourcery.com>
PR c++/7112
--- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog Mon Jul 1 21:43:14 2002
+++ gcc/gcc/testsuite/ChangeLog Wed Jul 3 03:00:21 2002
@@ -1,3 +1,50 @@
+Wed Jul 3 10:25:41 2002 J"orn Rennecke <joern.rennecke@superh.com>
+
+ * gcc.c-torture/execute/simd-1.c (main): Also test &, |, ^, ~.
+ * gcc.c-torture/execute/simd-2.c (main): Likewise.
+
+2002-07-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * gcc.dg/cpp/tr-warn2.c: Use traditional C style function definitions.
+ * gcc.dg/wtr-aggr-init-1.c: Likewise.
+ * gcc.dg/wtr-conversion-1.c: Likewise.
+ * gcc.dg/wtr-escape-1.c: Likewise.
+ * gcc.dg/wtr-int-type-1.c: Likewise.
+ * gcc.dg/wtr-label-1.c: Likewise.
+ * gcc.dg/wtr-static-1.c: Likewise.
+ * gcc.dg/wtr-strcat-1.c: Likewise.
+ * gcc.dg/wtr-suffix-1.c: Likewise.
+ * gcc.dg/wtr-switch-1.c: Likewise.
+ * gcc.dg/wtr-unary-plus-1.c: Likewise.
+ * gcc.dg/wtr-union-init-1.c: Likewise.
+ * gcc.dg/wtr-union-init-2.c: Likewise.
+ * gcc.dg/wtr-union-init-3.c: Likewise.
+
+ * gcc.dg/wtr-func-def-1.c: New test.
+
+2002-07-02 Devang Patel <dpatel@apple.com>
+
+ * objc.dg/param-1.m: New test.
+
+2002-07-03 Neil Booth <neil@daikokuya.co.uk>
+
+ * gcc.dg/cpp/trad/directive.c: Add test.
+ * gcc.dg/cpp/trad/macroargs.c: Add test.
+ * gcc.dg/cpp/trad/recurse-3.c: Add tests.
+
+2002-07-02 Neil Booth <neil@daikokuya.co.uk>
+
+ * gcc.dg/cpp/cmdlne-M.c: New test.
+
+2002-07-02 Ziemowit Laski <zlaski@apple.com>
+
+ * objc.dg/desig-init-1.m: New test.
+
+2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
+
+ PR c++/6716
+ * g++.dg/template/instantiate1.C: New test.
+
2002-07-01 Mark Mitchell <mark@codesourcery.com>
PR c++/7112
--- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog Tue Jul 2 01:12:52 2002
+++ gcc/libstdc++-v3/ChangeLog Tue Jul 2 23:30:22 2002
@@ -1,3 +1,23 @@
+2002-07-02 Benjamin Kosnik <bkoz@redhat.com>
+
+ PR libstdc++/6410
+ * include/bits/locale_facets.h (moneypunct::moneypunct): Add const
+ char* name parameter.
+ * config/locale/gnu/monetary_members.cc: Use it.
+ * config/locale/generic/monetary_members.cc: Same.
+ * src/localename.cc (_Impl::_Impl(const char*, size_t)): Use it.
+
+ * include/backward/strstream.h: Update date.
+
+2002-07-02 Paolo Carlini <pcarlini@unitus.it>
+
+ PR libstdc++/6642
+ * include/bits/stl_iterator.h
+ (__normal_iterator::operator-(const __normal_iterator&)):
+ Make non-member, as already happens for the comparison
+ operators in accord with DR179 (Ready).
+ * testsuite/24_iterators/iterator.cc: Add test from the PR.
+
2002-07-02 Phil Edwards <pme@gcc.gnu.org>
PR libstdc++/7173
--- /maat/heart/tbox/changelog_pass/gcc/libjava/ChangeLog Mon Jul 1 21:43:38 2002
+++ gcc/libjava/ChangeLog Tue Jul 2 13:02:44 2002
@@ -1,3 +1,13 @@
+2002-07-02 Tom Tromey <tromey@redhat.com>
+ David Hovemeyer <daveho@cs.umd.edu>
+
+ * java/text/ChoiceFormat.java
+ (format(double,StringBuffer,FieldPosition)): Fix fencepost error
+ in check loop.
+ * java/text/MessageFormat.java
+ (format(Object[],StringBuffer,FieldPosition): Pass all arguments
+ to MessageFormat.
+
2002-07-01 Tom Tromey <tromey@redhat.com>
* javax/naming/spi/NamingManager.java (getPlusPath): Don't create
--- /maat/heart/tbox/changelog_pass/gcc/libjava/testsuite/ChangeLog Sun Jun 23 22:52:29 2002
+++ gcc/libjava/testsuite/ChangeLog Tue Jul 2 11:30:33 2002
@@ -1,3 +1,10 @@
+2002-07-02 Andrew Haley <aph@redhat.com>
+
+ * libjava.lang/inline.java: New file.
+ * libjava.lang/inline.out: Likewise.
+
+ * libjava.lang/Array_3.java: Add another case.
+
2002-06-23 Tom Tromey <tromey@redhat.com>
* Makefile.in: Rebuilt.
-------------- next part --------------
--
Geoffrey Keating <regress@redhat.com>
(via an automated GCC regression-testing script.)
More information about the Gcc-regression
mailing list