1 GCC HEAD regressions, 1 new, with your patch on 2005-01-07T15:37:24Z.

GCC regression checker geoffk@apple.com
Sat Jan 8 12:06:00 GMT 2005


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

The new failures are:
native libstdc++.sum 18_support/numeric_limits.cc

For more information, see http://gcc.gnu.org/regtest/.

-------------- next part --------------
ChangeLog entries since last run on 2005-01-06T19:16:41Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog	Thu Jan  6 11:17:41 2005
+++ gcc/gcc/ChangeLog	Fri Jan  7 07:38:26 2005
@@ -1,3 +1,79 @@
+2005-01-07  David Edelsohn  <edelsohn@gnu.org>
+
+	PR target/13674
+	* config/rs6000/rs6000.c (rs6000_legitimize_reload_address):
+	Convert non-word aligned offset address using ld/std into
+	indirect address.
+
+2005-01-07  Richard Henderson  <rth@redhat.com>
+
+	* config/i386/i386.md (sse_loadhps splitter): Fix operand number typo.
+
+2005-01-07  Richard SAndiford  <rsandifo@redhat.com>
+
+	* tree.h (IS_EXPR_CODE_CLASS): Use a straight-forward range check.
+
+2005-01-07  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/19283
+	* fold-const.c (fold_widened_comparison): Return NULL if shorter_type
+	is not shorter than the original type.
+
+	PR rtl-optimization/19012
+	* config/i386/i386.md (addqi_1_slp): Set memory attribute.
+
+	PR rtl-optimization/18861
+	* cfgbuild.c (BLOCK_USED_BY_TABLEJUMP): Define.
+	(FULL_STATE): Define.
+	(mark_tablejump_edge): New function.
+	(purge_dead_tablejump_edges): New function.
+	(find_bb_boundaries): Use it.
+
+	PR tree-optimization/18828
+	* builtins.c (expand_builtin_next_arg): Remove argument and all
+	the argument checking.
+	(expand_builtin): Adjust caller.
+	(expand_builtin_va_start): Likewise.  Remove error for too many
+	arguments.
+	(fold_builtin_next_arg): Issue error for too many arguments.
+	After checking arguments, replace them with magic arguments that
+	prevent further checking of the args.
+
+2005-01-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	* pa64-hpux.h (STARTFILE_SPEC): Fix typo in spec.
+
+2005-01-06  Roger Sayle  <roger@eyesopen.com>
+
+	PR target/6077
+	* gcc.c (input_suffix_matches): Tweak the semantics of %{.s:...}
+	and %{.S:...} (and their negative variants) to test whether the
+	input file is assembler or pre-processed-assembler independent of
+	the actual filename extension.
+
+2005-01-06  Roger Sayle  <roger@eyesopen.com>
+
+	* simplify-rtx.c (simplify_subreg): Simplify truncations of shifts
+	of sign or zero extended values.
+
+2005-01-06  Geoffrey Keating  <geoffk@apple.com>
+
+	* c-cppbuiltin.c (builtin_define_float_constants): Set __*_EPSILON__
+	for IBM long double format correctly.
+
+2005-01-06  Daniel Berlin <dberlin@dberlin.org>
+	
+	Fix PR tree-optimization/18792
+
+	* tree-data-ref.c (build_classic_dist_vector): Change first_loop
+	to first_loop_depth, and use loop depth instead of loop number.
+	(build_classic_dir_vector): Ditto.
+	(compute_data_dependences_for_loop): Use depth, not loop number.
+	* tree-loop-linear.c (try_interchange_loops): Use loop depth, not loop 
+	number. Pass in loops, instead of loop numbers.
+	(gather_interchange_stats): Ditto.
+	(linear_transform_loops): Ditto.
+
 2005-01-06  Richard Sandiford  <rsandifo@redhat.com>
 
 	PR rtl-opt/13299
--- /Users/regress/tbox/changelog_mail/gcc/gcc/cp/ChangeLog	Thu Jan  6 11:17:49 2005
+++ gcc/gcc/cp/ChangeLog	Fri Jan  7 07:38:32 2005
@@ -1,3 +1,15 @@
+2005-01-06  Mark Mitchell  <mark@codesourcery.com>
+
+	PR c++/19244
+	* class.c (add_implicitly_declared_members): Remove dead code.
+	* decl.c (grokfndecl): Add sfk parameter.  Use it do set
+	DECL_CONSTRUCTOR_P.
+	(grokdeclarator): Adjust calls to grokfndecl.
+	* method.c (implicitly_declare_fn): Improve documentation.
+	* parser.c (cp_parser_direct_declarator): Do not consider a
+	function to be a constructor if the containing class was
+	originally anonymous.
+
 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
 	PR c++/17154
--- /Users/regress/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog	Thu Jan  6 11:17:52 2005
+++ gcc/gcc/testsuite/ChangeLog	Fri Jan  7 07:38:35 2005
@@ -1,3 +1,37 @@
+2005-01-07  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
+
+	PR fortran/15553
+	* gfortran.dg/array-1.f90: New test.
+
+2005-01-07  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/19283
+	* gcc.c-torture/execute/20050106-1.c: New test.
+
+	PR rtl-optimization/18861
+	* gcc.dg/20050105-1.c: New test.
+
+	PR tree-optimization/18828
+	* gcc.dg/20050105-2.c: New test.
+
+2005-01-07  Andreas Jaeger  <aj@suse.de>
+
+	* gcc.dg/i386-local.c: Handle -m32/-m64 runs correctly.
+
+2005-01-07  Bud Davis  <bdavis9659@comcast.net>
+
+	PR fortran/18398
+	* gfortran.dg/fmt_read.f90: New test.
+
+2005-01-06  Geoffrey Keating  <geoffk@apple.com>
+
+	* gcc.dg/rs6000-ldouble-2.c: New.
+
+2005-01-06  Mark Mitchell  <mark@codesourcery.com>
+
+        PR c++/19244
+	* g++.dg/parser/ctor2.C: New test.
+
 2004-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
 	PR c++/17154
--- /Users/regress/tbox/changelog_mail/gcc/libstdc++-v3/ChangeLog	Thu Jan  6 11:18:10 2005
+++ gcc/libstdc++-v3/ChangeLog	Fri Jan  7 07:38:59 2005
@@ -1,3 +1,10 @@
+2005-01-06  Benjamin Kosnik  <bkoz@redhat.com>
+
+	* include/bits/fstream.tcc: Remove unnecessary qualifications for
+	uglified data members of basic_filebuf, including _M_buf,
+	_M_buf_size, _M_mode, _M_pback_init.
+	* include/std/std_fstream.h: Same.
+	
 2005-01-05  Benjamin Kosnik  <bkoz@redhat.com>
 
 	* testsuite/testsuite_hooks.h: 
--- /Users/regress/tbox/changelog_mail/gcc/libjava/ChangeLog	Wed Jan  5 13:35:09 2005
+++ gcc/libjava/ChangeLog	Fri Jan  7 07:38:47 2005
@@ -1,3 +1,26 @@
+2005-01-07  Michael Koch  <konqueror@gmx.de>
+
+	PR libgcj/18115
+	* java/nio/Buffer.java (address): New field.
+	* java/nio/DirectByteBufferImpl.java (address): Removed.
+	* java/nio/MappedByteBufferImpl.java (address): Likewise.
+	* java/nio/CharViewBufferImpl.java (CharViewBufferImpl):
+	Explicitly initialize Buffer.address if needed.
+	* java/nio/DoubleViewBufferImpl.java (DoubleViewBufferImpl): Likewise.
+	* java/nio/FloatViewBufferImpl.java (FloatViewBufferImpl): Likewise.
+	* java/nio/IntViewBufferImpl.java (IntViewBufferImpl): Likewise.
+	* java/nio/LongViewBufferImpl.java (LongViewBufferImpl): Likewise.
+	* java/nio/ShortViewBufferImpl.java (ShortViewBufferImpl): Likewise.
+	* jni.cc (_Jv_JNI_GetDirectBufferAddress): Don't assume buffer is a
+	DirectByteBufferImpl object.
+	(_Jv_JNI_GetDirectBufferCapacity): Likewise.
+	* testsuite/libjava.jni/directbuffer.c,
+	testsuite/libjava.jni/directbuffer.java,
+	testsuite/libjava.jni/directbuffer.out,
+	testsuite/libjava.jni/bytebuffer.c,
+	testsuite/libjava.jni/bytebuffer.java,
+	testsuite/libjava.jni/bytebuffer.out: New files.
+
 2005-01-05  Tom Tromey  <tromey@redhat.com>
 
 	* java/util/zip/ZipEntry.java (setCompressedSize): Allow any

ChangeLog entries between 2005-01-06T19:16:41Z and the last time everything
passed, on 2005-01-06T19:16:41Z:
-------------- next part --------------
-- 
Geoffrey Keating <geoffk@apple.com> 
(via an automated GCC regression-testing script.)


More information about the Gcc-regression mailing list