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]

2 GCC regressions, 0 new, with your patch on 2000-09-26T14: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 2
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.dg/cpp/syshdr.c
gcc.sum gcc.dg/wtr-int-type-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-25T21:35:01Z.

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.dg/cpp/syshdr.c (test for excess errors)
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/gcc.sum:FAIL: gcc.dg/wtr-int-type-1.c decimal constant (test for warnings, line 40)
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
gcc/testsuite/g++.sum:FAIL: g++.pt/static11.C  Execution test
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	Mon Sep 25 14:35:37 2000
+++ egcs/gcc/ChangeLog	Tue Sep 26 07:20:35 2000
@@ -1,3 +1,84 @@
+2000-09-26  Jakub Jelinek  <jakub@redhat.com>
+
+	* config/sparc/sparc.c (sparc_emit_set_const64): Don't abort when
+	op0 is a SUBREG.
+	(function_arg_slotno): Accept TImode/CTImode.
+	* config/sparc/sparc.h (MIN_UNITS_PER_WORD): If IN_LIBGCC2 define
+	to UNITS_PER_WORD.
+
+2000-09-26  Michael Hayes  <mhayes@cygnus.com>
+
+	* flow.c (flow_loop_pre_header_scan): Punt if loop enters
+	from entry block.
+
+2000-09-25  Jim Wilson  <wilson@cygnus.com>
+
+	* config/ia64/ia64.h (INDEX_REG_CLASS): Define to GENERAL_REGS.
+	(REGNO_OK_FOR_INDEX_P): Define to REGNO_OK_FOR_BASE_P.
+	(LEGITIMATE_ADDRESS_DISP): Use LEGITIMATE_ADDRESS_REG.
+	(REG_OK_FOR_INDEX): Define to REG_OK_FOR_BASE_P.
+
+Tue 26-Sep-2000 00:16:22 BST  Neil Booth  <neilb@earthling.net>
+
+        * cpplex.c (parse_args): Don't set VOID_REST flag.
+	(CONTEXT_VARARGS): New flag.
+	(maybe_paste_with_next): Set context earlier in loop.  Use
+	it.  Do varargs test with CONTEXT_VARARGS flag.
+	(push_arg_context): Set CONTEXT_VARARGS flag if we're
+	pushing an argument context for a varargs argument.
+	* cpplib.h (VOID_REST): Delete.
+	* gcc.dg/cpp/vararg1.c: Add test case.   
+
+2000-09-25  Branko Cibej  <branko.cibej@hermes.si>
+
+        * flags.h:  Declare warning flag warn_system_headers.
+        * toplev.c:  Define it.
+        (W_options): Add option -Wsystem-headers.
+        * diagnostic.c (count_error): Test warn_system_headers.
+        * invoke.texi:  Add description for -Wsystem-headers.
+	* cpplib.h (cpp_options): New member warn_system_headers.
+	* cpphash.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Don't test
+	CPP_IN_SYSTEM_HEADER.
+	* cpplib.c (do_import, do_pragma_once): Likewise.
+	* cpperror.c (_cpp_begin_message): Test warn_system_headers
+	and CPP_IN_SYSTEM_HEADER.
+	* cppinit.c (handle_option): Recognize -Wsystem_headers.
+	(print_help): Describe -Wsystem_headers.
+	* cpplex.c (lex_line): Reorganize condition so that warnings
+	about C++ comments in system headers can be enabled. Remove
+	label do_line_comment.
+
+Mon 25-Sep-2000 23:38:27 BST  Neil Booth  <neilb@earthling.net>
+
+	* cpplex.c (save_comment): Only store the initial '/'
+	now.
+	(lex_token): Combine handling of the two comment types.
+	Pass everything but the initial '/' to save_comment.	
+
+Mon 25-Sep-2000 23:31:45 BST  Neil Booth  <neilb@earthling.net>
+
+	* cpphash.h (_cpp_digraph_spellings, _cpp_process_directive,
+	_cpp_can_paste): New library-internal prototypes.
+	* cpplex.c (dump_param_spelling, output_line_command,
+	output_token, cpp_scan_buffer, cpp_scan_buffer_nooutput,
+	cpp_printf, cpp_output_list): Move to cppoutput.c.
+	(process_directive, can_paste, digraph_spellings): Add _cpp_ prefix.
+	* cppmacro.c (dump_macro_args, cpp_dump_definition) Move to
+	cppoutput.c.
+	* cppoutput.c (dump_macro_args, cpp_dump_definition, output_token,
+	dump_param_spelling, output_line_command, cpp_scan_buffer,
+	cpp_scan_buffer_nooutput, cpp_printf, cpp_output_list): Moved
+	from elsewhere.
+	* Makefile.in: Add cppoutput.c.
+	* po/POTFILES.in: Add cppoutput.c.
+
+2000-09-25  Richard Henderson  <rth@cygnus.com>
+
+	* config/ia64/ia64.c (ia64_print_operand): Define 'e' as 64-n.
+	* config/ia64/ia64.md (rotrsi3): Allow variable rotates; don't
+	split until after reload.
+	(rotlsi3, rotldi3): New.
+
 2000-09-25  Gabriel Dos Reis  <gdr@codesourcery.com>
 
 	* diagnostic.c (output_last_position): Define.
--- /sloth/delay/tbox/changelog_pass/egcs/gcc/testsuite/ChangeLog	Sun Sep 24 21:35:42 2000
+++ egcs/gcc/testsuite/ChangeLog	Tue Sep 26 07:20:37 2000
@@ -1,3 +1,13 @@
+2000-09-26  Jakub Jelinek  <jakub@redhat.com>
+
+        * gcc.c-torture/compile/20000923-1.c: New test.
+
+2000-09-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
+
+	* g++.old-deja/g++.other/crash20.C: Make ready for libstdc++-v3.
+	* g++.old-deja/g++.pt/ttp62.C: Same.
+	* g++.old-deja/g++.other/inline14.C: Same.
+
 2000-09-24  Richard Henderson  <rth@cygnus.com>
 
 	* gcc.c-torture/execute/20000914-1.c: Declare malloc.
-- 
Geoffrey Keating <geoffk@cygnus.com> 
(via an automated GCC regression script.)

jakub@redhat.com

2000-09-26T14:20:00Z 2000-09-26T16:49:45Z regress-2

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