4 GCC regressions, 2 new, with your patch on 2002-01-10T20:57:36Z.

GCC regression checker regress@maat.cygnus.com
Thu Jan 10 15:31:00 GMT 2002


With your recent patch, GCC has some regression test failures, which
used to pass.  There are 2 new failures, and 2
failures that existed before and after that patch; 0 failures
have been fixed.

The new failures are:
native gcc.sum gcc.c-torture/execute/920302-1.c
native gcc.sum gcc.c-torture/execute/comp-goto-1.c

The old failures, which were not fixed or introduced by your patch, are:
powerpc-eabisim g++.sum g++.pt/infinite1.C
native g++.sum g++.pt/infinite1.C

For more information, see <http://people.redhat.com/geoffk/gcc-regression/>.
-------------- next part --------------
ChangeLog entries since last run on 2002-01-10T18:02:59Z:
--- /maat/heart/tbox/changelog_mail/gcc/gcc/ChangeLog	Thu Jan 10 10:03:14 2002
+++ gcc/gcc/ChangeLog	Thu Jan 10 12:57:50 2002
@@ -1,5 +1,98 @@
 2002-01-10  Kazu Hirata  <kazu@hxi.com>
 
+	* doc/extend.texi (deprecated): Fix a typo.
+
+Thu Jan 10 22:35:54 CET 2002  Jan Hubicka  <jh@suse.cz>
+
+	* basic-block.h (update_br_prob_note): Declare.
+	* cfgcleanup.c (try_simplify_condjump): Call update_br_prob_note.
+	(try_forward_edges): Care negative frequencies and update note.
+	(outgoing_edges_match): Tweek conditional merging heuristics.
+	(try_crossjump_to_edge): use update_br_prob_note.
+	* cfglayout.c (fixup_reorder_chain): Likewise.
+	* cfrtl.c (update_br_prob_note): New.
+	* ifcvt.c (dead_or_predicable): Call update_br_prob_note.
+
+	* i386.c (ix86_decompose_address): Return -1 if address contains
+	shift.
+	(legitimate_address_p): Require ix86_decompose_address to return 1.
+
+	* gcse.c (hash_scan_set): Use CONSTANT_INSN_P.
+	(cprop_insn): Likewise.
+
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+	* toplev.c: Fix formatting.
+	* tree.c: Likewise.
+	* tree-dump.c: Likewise.
+	* unroll.c: Likewise.
+	* unwind-dw2.c: Likewise.
+	* unwind-dw2-fde.c: Likewise.
+	* unwind-dw2-fde-glibc.c: Likewise.
+	* unwind-sjlj.c: Likewise.
+
+2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+	* doc/invoke.texi: Document PDP-11 options.
+
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+	* config/h8300/h8300.h: Fix formatting.
+
+2001-01-10  Ira Ruben	<ira@apple.com>
+
+	Add __attribute__ ((deprecated)).
+	* extend.texi: Document __attribute__ ((deprecated)).
+	* invoke.texi: Document -Wno-deprecated-declarations.
+	* testsuite/g++.dg/other/deprecated.C: New C++ test.
+	* testsuite/gcc.dg/deprecated.c: New C test.
+	* attribs.c (enum attrs): Declare handle_deprecated_attribute().
+	(c_common_attribute_table): Add "deprecated" entry.
+	(handle_deprecated_attribute): New function.
+	* c-decl.c (deprecated_states): New enum.
+	deprecated_state: State of "deprecated" handling.
+	(start_decl): Set deprecated_state based on attributes.
+	(grokdeclarator): Test for deprecated uses, propagate attribute.
+	* c-typeck.c (build_component_ref): Test for deprecated fields.
+	(build_external_ref): Test for deprecated primaries.
+	* diagnostic.c (warn_deprecated_use) New function to issue
+	warnings about __attribute__ ((depricated)) references.
+	* flags.h (warn_deprecated_decl): Extern declared for
+	-W[no-]deprecated-declarations option.
+	* print-tree.c (print_node): Show deprecated flag status.
+	* toplev.c (warn_deprecated_decl): Defined.
+	(W_options): Added "deprecated-declaration".
+	* toplev.h (warn_deprecated_use): Extern declared.
+	* tree.h (struct tree_common): Define deprecated_flag.
+	(TREE_DEPRECATED): New macro to access flag.
+	* cp/call.c (build_call): Test for deprecated calls.
+	* cp/class.c (add_implicitly_declared_members): Set global
+	flag to tell grokdeclarator to not issue deprecated warnings.
+	* cp/cp-tree.h: Add extern for adding_implicit_members.
+	* cp/decl.c (deprecated_states): New enum.
+	(start_decl): Set deprecated_state based on attributes.
+	(grokdeclarator): Test for deprecated uses, propagate attribute.
+	* cp/lex.c (do_identifier): Test for deprecated primaries.
+	* cp/typeck.c (build_component_ref): Test for deprecated fields.
+
+2001-01-10  Ira Ruben	<ira@apple.com>
+
+	Fix to assign attributes to inline member functions.
+	* cp/decl.c (start_method): Handle attrlist.
+
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+	* combine.c (expand_field_assignment): Use subreg_lsb().
+
+2002-01-10  David Edelsohn  <edelsohn@gnu.org>
+
+	* alias.c (find_base_value): Add cases for HIGH, PRE_INC, PRE_DEC,
+	POST_INC, POST_DEC, PRE_MODIFY, and POST_MODIFY.
+	(find_base_term): Add cases for TRUNCATE, PRE_MODIFY, and POST_MODIFY.
+	Recurse for any operand of AND as long as constant is non-zero.
+
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
 	* config/h8300/h8300.md: Remove constraints from expanders.
 
 2002-01-10  Kazu Hirata  <kazu@hxi.com>

ChangeLog entries between 2002-01-10T18:02:59Z and the last time everything
passed, on 2002-01-10T14:21:33Z:
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog	Thu Jan 10 06:21:53 2002
+++ gcc/gcc/ChangeLog	Thu Jan 10 10:03:14 2002
@@ -1,3 +1,34 @@
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+	* config/h8300/h8300.md: Remove constraints from expanders.
+
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+	* varasm.c: Fix formatting.
+	* varray.c: Likewise.
+	* vmsdbgout.c: Likewise.
+	* xcoffout.c: Likewise.
+
+Thu Jan 10 17:19:12 CET 2002  Jan Hubicka  <jh@suse.cz>
+
+	* cfgcleanup.c (try_forward_edges): Properly initialize nthreaded_edges;
+        update edge probabilities to match.
+
+2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+	* Makefile.in ($(docdir)/gccint.info, gccint.dvi): Add additional
+	dependencies.
+	* doc/languages.texi, doc/sourcebuild.texi: New files.
+	* doc/configfiles.texi: Make a subsubsection.  Update.
+	* doc/configterms.texi: Add @node.  Remove warning that this isn't
+	instructions for building GCC.
+	* doc/makefile.texi: Make a subsection.
+	* doc/gccint.texi: Update.
+
+Thu Jan 10 16:39:58 CET 2002  Jan Hubicka  <jh@suse.cz>
+
+	* i386.md (sse_mov?fcc_const0_?): Fix constraints.
+
 Thu Jan 10 12:45:50 2002  Nicola Pero  <n.pero@mi.flashnet.it>
 
 	* doc/cpp.texi: Document the __OBJC__ preprocessor macro.
--- /maat/heart/tbox/changelog_pass/gcc/gcc/cp/ChangeLog	Thu Jan 10 03:15:55 2002
+++ gcc/gcc/cp/ChangeLog	Thu Jan 10 10:03:23 2002
@@ -1,4 +1,12 @@
-2002-01-20  Graham Stott  <grahams@redhat.com>
+2002-01-10  Ira Ruben	<ira@apple.com>
+
+	* decl.c (start_method): Handle attrlist.
+
+2002-01-10  Jakub Jelinek  <jakub@redhat.com>
+
+	* decl2.c (max_tinst_depth): Increase default limit to 500.
+
+2002-01-10  Graham Stott  <grahams@redhat.com>
 
 	* spew.c (YYCHAR): Uppercase macro parameter and add
 	parenthesis.
@@ -284,6 +292,7 @@
 
 2002-01-04  Jason Merrill  <jason@redhat.com>
 
+	PR c++/4122
 	* class.c (update_vtable_entry_for_fn): Set delta to zero for a
 	lost primary.
 
@@ -423,6 +432,7 @@
 
 2001-12-18  Jason Merrill  <jason@redhat.com>
 
+	PR c++/3242
 	* class.c (add_method): Do compare 'this' quals when trying to match a
 	used function.  Don't defer to another used function.
 
@@ -766,7 +776,7 @@
 
 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
 
-	* cp/search.c (lookup_base_r): Declare bk in variable declaration
+	* search.c (lookup_base_r): Declare bk in variable declaration
 	space.
 
 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
@@ -933,7 +943,7 @@
 
 2001-11-12  H.J. Lu <hjl@gnu.org>
 
-	* cp/cvt.c (ocp_convert): Don't warn the address of a weak
+	* cvt.c (ocp_convert): Don't warn the address of a weak
 	function is always `true'.
 
 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
--- /maat/heart/tbox/changelog_pass/gcc/libjava/ChangeLog	Wed Jan  9 18:13:00 2002
+++ gcc/libjava/ChangeLog	Thu Jan 10 10:03:28 2002
@@ -1,4 +1,19 @@
+2002-01-10  Tom Tromey  <tromey@redhat.com>
+
+	For PR libgcj/5303:
+	* gnu/java/rmi/rmic/RMIC.java (parseOptions): Handle --help and
+	--version.  Recognize GNU-style long options.  Print GNU-style
+	error messages.
+	(usage): Print GNU-style help.  Exit with status 0.
+	(error): New method.
+	(run): Print error message if no class names found.
+	(main): Don't print usage on error.
+
 2002-01-09  Tom Tromey  <tromey@redhat.com>
+
+	* gnu/gcj/convert/Convert.java (version): Use java.vm.name
+	property.
+	(help, version): Use println(), not println("").
 
 	For PR libgcj/5303:
 	* gnu/gcj/convert/Convert.java (error): Program is called
-------------- next part --------------
-- 
Geoffrey Keating <regress@maat.cygnus.com> 
(via an automated GCC regression-testing script.)



More information about the Gcc-regression mailing list