This is the mail archive of the gcc-regression@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

1 GCC regressions, 0 new, with your patch on 2000-09-11T02:20:00Z.


(This is an automated message.)

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

The old failures, which were not fixed or introduced by your patch, are:
gcc.sum gcc.c-torture/execute/950511-1.c

A complete list of failures is attached.  Also attached is a diff of
the ChangeLog entries since the last time the regression tests passed,
on 2000-09-10T15:35:00Z.

For more information, see <http://www.cygnus.com/~geoffk/gcc-regression/>.
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O2 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O3 -fomit-frame-pointer 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O3 -fomit-frame-pointer -funroll-loops 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O3 -g 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -O3 -fssa 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000225-1.c execution,  -Os 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -O2 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -O3 -fomit-frame-pointer 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -O3 -fomit-frame-pointer -funroll-loops 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -O3 -g 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-1.c execution,  -Os 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000801-2.c execution,  -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/20000818-1.c compilation,  -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions 
gcc/testsuite/gcc.sum:FAIL: gcc.c-torture/execute/950511-1.c execution,  -O1 
gcc/testsuite/gcc.sum:FAIL: gcc.dg/c99-array-nonobj-1.c func [] arg (test for errors, line 26)
gcc/testsuite/gcc.sum:FAIL: gcc.dg/c99-array-nonobj-1.c (test for excess errors)
gcc/testsuite/g++.sum:FAIL: g++.ext/instantiate1.C not instantiated (test for errors, line 18)
gcc/testsuite/g++.sum:FAIL: g++.ext/instantiate1.C not instantiated (test for errors, line 20)
gcc/testsuite/g++.sum:FAIL: g++.other/loop2.C caused compiler crash
powerpc-eabisim/libio/testsuite/libio.sum:FAIL: tFile.cc execution 
powerpc-eabisim/libio/testsuite/libio.sum:FAIL: tFile.cc execution -b0
powerpc-eabisim/libio/testsuite/libio.sum:FAIL: tFile.cc execution -b3
powerpc-eabisim/libio/testsuite/libio.sum:FAIL: tiomisc.cc output 
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/ChangeLog	Sun Sep 10 08:35:42 2000
+++ egcs/gcc/ChangeLog	Sun Sep 10 19:20:35 2000
@@ -1,3 +1,72 @@
+2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
+
+	* defaults.h: Provide default definitions for: CHAR_TYPE_SIZE,
+	SHORT_TYPE_SIZE, INT_TYPE_SIZE, LONG_TYPE_SIZE,
+	LONG_LONG_TYPE_SIZE, WCHAR_TYPE_SIZE, FLOAT_TYPE_SIZE,
+	DOUBLE_TYPE_SIZE, LONG_DOUBLE_TYPE_SIZE, and WCHAR_UNSIGNED.
+
+	* cppexp.c, dwarfout.c, dwarf2out.c, emit-rtl.c, final.c, optabs.c,
+	profile.c, sdbout.c, tradcif.y, tree.c:
+	Include defaults.h if not already included.
+	Don't define the above macros.
+
+	* Makefile.in: Update dependencies.
+
+2000-09-10  Mark Mitchell  <mark@codesourcery.com>
+
+	* c-common.h (add_stmt): Change prototype.
+	(RECHAIN_STMTS): New macro.
+	(CASE_LABEL_DECL): Likewise.
+	(genrtl_case_label): Change prototype.
+	(c_expand_start_case): Remove prototype.
+	(build_case_label): Change prototype.
+	(decl_constant_value): Declare.
+	* c-common.c (check_case_value): Handle C++'s extensions to C
+	semantics.
+	* c-commnon.def (CASE_LABEL): Add room for the CASE_LABEL_DECL
+	field.
+	* c-parse.in (stmt): Adjust handling of return statements and case
+	laels.
+	* c-semantics.c (add_stmt): Return the new statement.
+	(genrtl_return_stmt): Take the RETURN_STMT as input, not the
+	returned expression.  Directly generate RTL, rather than calling
+	c_expand_return.
+	(genrtl_switch_stmt): Don't call c_expand_start_case.
+	(build_case_label): Take the LABEL_DECL as input, too.
+	(genrtl_case_label): Just call add_case_node.
+	(expand_stmt): Adjust calls to genrtl_return_stmt and
+	genrtl_case_label.
+	* c-tree.h (c_expand_start_case): Declare.
+	* c-typeck.c (decl_constant_value): Give it external linkage.
+	(c_expand_return): Don't call expand_return or expand_null_return;
+	use genrtl_return_stmt instead.
+	* stmt.c (struct nesting): Remove num_ranges field.
+	(add_case_node): Give it external linkage.
+	(expand_start_case): Don't set num_ranges.
+	(expand_start_case_dummy): Don't clear it.
+	(pushcase): Rely on add_case_node to handle `default' labels.
+	(add_case_node): Handle `default' labels.
+	* tree.c (tree_int_cst_compare): New function.
+	* tree.h (tree_int_cst_compare): Declare.
+	(add_case_node): Likewise.
+
+2000-09-10  Richard Henderson  <rth@cygnus.com>
+
+	* c-parse.in: Revert last change.
+	(init_reswords): Do not enter disabled keywords into the ridpointers
+	table, modulo objc weirdness.
+	(_yylex): Return the canonical spelling for a keyword.
+
+2000-09-10  Philip Blundell  <philb@gnu.org>
+
+	* config/arm/arm.h (CPP_ISA_SPEC): Don't define `arm' or `thumb'.
+	* config/arm/linux-elf.h (CPP_PREDEFINES): Don't define `__arm__'.
+
+Sun Sep 10 14:30:28 EDT 2000  John Wehle  (john@feith.com)
+
+	* alias.c (find_base_term): Handle ADDRESSOF.
+	(memrefs_conflict_p): An ADDRESSOF doesn't conflict.
+
 2000-09-10  Denis Chertykov  <denisc@overta.ru>
 
 	* genoutput.c (output_insn_data): Translate <NEWLINE> to \n\ while
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/ch/ChangeLog	Tue Aug 29 17:20:29 2000
+++ egcs/gcc/ch/ChangeLog	Sun Sep 10 19:20:38 2000
@@ -1,3 +1,9 @@
+2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
+
+	* decl.c, timing.c: Include defaults.h if not already included.
+	Don't define the *_TYPE_SIZE macros.
+	* Makefile.in: Update dependencies.
+
 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
 
 	* inout.c (add_enum_to_list): Use DECL_NAME directly, don't get
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/cp/ChangeLog	Thu Sep  7 01:50:15 2000
+++ egcs/gcc/cp/ChangeLog	Sun Sep 10 19:20:39 2000
@@ -1,3 +1,34 @@
+2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
+
+	* decl.c, rtti.c: Include defaults.h if not already included.
+	Don't define the *_TYPE_SIZE macros.
+
+2000-09-09  Mark Mitchell  <mark@codesourcery.com>
+
+	* cp-tree.h (push_switch): Change prototype.
+	(check_cp_case_value): Remove declaration.
+	(decl_constant_value): Likewise.
+	* decl.c (struct cp_switch): Add switch_stmt and cases.
+	(case_compare): New function.
+	(push_switch): Set switch_stmt.  Initialize cases.
+	(pop_switch): Clean up cases.
+	(define_case_label): Rename to ...
+	(finish_case_label): ... this.  Do semantic analysis for case
+	labels here.
+	(start_function): Correct comment.
+	* decl2.c (check_cp_case_value): Remove.
+	* expr.c (do_case): Remove.
+	* pt.c (tsubst_expr): Adjust call to finish_case_label.
+	* semantics.c (genrtl_do_poplevel): Remove declaration.
+	(RECHAIN_STMTS): Remove.
+	(finish_break_stmt): Use build_break_stmt.
+	(finish_continue_stmt): Use build_continue_stmt.
+	(finish_switch_cond): Adjust condition here, rater than in
+	c_expand_start_case.
+	(finish_case_label): Remove.
+	* typeck.c (c_expand_return): Remove.
+	(c_expand_start_case): Likewise.
+	
 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
 
 	* ir.texi: Document type nodes.
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/f/ChangeLog	Tue Aug 29 17:20:33 2000
+++ egcs/gcc/f/ChangeLog	Sun Sep 10 19:20:40 2000
@@ -1,3 +1,9 @@
+2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
+
+	* com.c: Include defaults.h.
+	* com.h: Don't define the *_TYPE_SIZE macros.
+	* Makefile.in: Update dependencies.
+
 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
 
 	* ansify.c: Use #line, not # <number>.
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/java/ChangeLog	Sat Sep  9 11:50:25 2000
+++ egcs/gcc/java/ChangeLog	Sun Sep 10 19:20:42 2000
@@ -1,3 +1,8 @@
+2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
+
+	* decl.c, expr.c: Include defaults.h if not already included.
+	Don't define the *_TYPE_SIZE macros.
+
 2000-09-09  Geoffrey Keating  <geoffk@cygnus.com>
 
 	* typeck.c (build_java_array_type): Correct first parameter
--- /sloth/delay/tbox/changelog_pass/egcs/include/ChangeLog	Tue Sep  5 23:20:38 2000
+++ egcs/include/ChangeLog	Sun Sep 10 16:35:41 2000
@@ -1,3 +1,7 @@
+2000-09-10  Mark Mitchell  <mark@codesourcery.com>
+
+	* splay-tree.h (splay_tree_predecessor): Declare.
+
 2000-09-05  John David Anglin <dave@hiauly1.hia.nrc.ca>
 
 	* md5.h (md5_uint32): Choose via INT_MAX instead of UINT_MAX.
--- /sloth/delay/tbox/changelog_pass/egcs/libiberty/ChangeLog	Fri Sep  8 11:50:34 2000
+++ egcs/libiberty/ChangeLog	Sun Sep 10 16:35:42 2000
@@ -1,3 +1,16 @@
+2000-09-10  Mark Mitchell  <mark@codesourcery.com>
+
+	* splay-tree.c (splay_tree_predecessor): New function.
+	(splay_tree_successor): Likewise.
+
+2000-09-10  Hans-Peter Nilsson  <hp@axis.com>
+
+	* testsuite/demangle-expected: Add four tests for type_info
+	mangling.
+
+	* cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
+	for a non-template non-qualified type_info function or node.
+
 2000-09-08  Alex Samuel  <samuel@codesourcery.com>
 
 	* cp-demangle.c: Fix copyright banner.
-- 
Geoffrey Keating <geoffk@cygnus.com> 
(via an automated GCC regression script.)

zack@wolery.cumb.org

2000-09-11T02:20:00Z 2000-09-11T04:50:05Z regress-1

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]