2 GCC HEAD regressions, 0 new, with your patch on 2004-12-14T16:12:18Z.

GCC regression checker geoffk@apple.com
Wed Dec 15 12:33:00 GMT 2004


With your recent patch, GCC HEAD 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:
native g++.sum g++.old-deja/g++.abi/cxa_vec.C
native g++.sum g++.old-deja/g++.brendan/new3.C

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

-------------- next part --------------
ChangeLog entries since last run on 2004-12-13T19:49:41Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog	Mon Dec 13 11:50:55 2004
+++ gcc/gcc/ChangeLog	Tue Dec 14 08:13:30 2004
@@ -1,3 +1,51 @@
+2004-12-14  Richard Earnshaw  <rearnsha@arm.com>
+
+	PR target/18973
+	arm-cores.def (arm926ej-s, arm1026ej-s, arm1136j-s, arm1136-jfs)
+	(arm1176jz-s, arm1176jzf-s, mpcorenovfp, mpcore): Add load-scheduling
+	property to flags.
+
+2004-12-14  Diego Novillo  <dnovillo@redhat.com>
+
+	* tree-gimple.c (get_base_address): Update documentation.
+
+2004-12-13  Richard Henderson  <rth@redhat.com>
+
+	PR middle-end/17930
+        * passes.c (rest_of_clean_state): Fix computation of
+        preferred_incoming_stack_boundary.
+
+2004-12-13  Wolfgang Bangerth <bangerth@dealii.org>
+
+	* reload.h: Remove struct needs and its only use.
+
+2004-12-13  Roger Sayle  <roger@eyesopen.com>
+
+	PR rtl-optimization/18928
+	* simplify_rtx.c (plus_minus_operand_p): New function to encode
+	the test for suitable operands for calls to simplify_plus_minus.
+	Only allow (CONST (PLUS x y)) if both x and y are CONSTANT_P.
+	(simplify_binary_operation): Use plus_minus_operand_p.
+
+2004-12-13  Alexandre Oliva  <aoliva@redhat.com>
+
+	PR tree-opt/16951
+	* tree-inline.c (setup_one_parameter): Don't directly map a
+	parameter to the address of another variable of the same
+	function.
+
+2004-13-12  Steven Bosscher  <stevenb@suse.de>
+
+	* basic-block.h (PROP_POSTRELOAD): Do not include PROP_AUTOINC, we
+	can never create autoinc insns after reload.
+
+2004-12-13  Jeff Law  <law@redhat.com>
+	    Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-ssa-dom.c (thread_across_edge): Do not thread jumps if a
+	PHI argument is set from a PHI_RESULT in the same block and the
+	PHI argument is not the same as the PHI result.
+
 2004-12-13  David Edelsohn  <edelsohn@gnu.org>
 
 	* xcoffout.c (xcoffout_declare_function): Always strip storage
@@ -6,7 +54,7 @@
 2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
 	PR target/18964
-	* config/darwin.c (darwin_assemble_visibility): Fix minor diadnostic
+	* config/darwin.c (darwin_assemble_visibility): Fix minor diagnostic
 	problem, adding a space at the end of the string before concatenation.
 
 2004-12-13  Kazu Hirata  <kazu@cs.umass.edu>
--- /Users/regress/tbox/changelog_mail/gcc/gcc/cp/ChangeLog	Sun Dec 12 15:30:49 2004
+++ gcc/gcc/cp/ChangeLog	Tue Dec 14 08:13:33 2004
@@ -1,3 +1,38 @@
+2004-12-14  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR c++/18949
+	* pt.c (tsubst_copy_and_build): <INDIRECT_REF case> Check that a
+	REFERENCE_REF_P is dereferencing a reference type.
+	* typeck.c (build_static_cast): Convert from reference even in a
+	template.
+	(build_reinterpret_cast, build_const_cast, build_c_cast): Likewise.
+
+2004-12-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+	* parser.c (cp_parser_uncommitted_to_tentative_parse_p): New function.
+	(cp_parser_name_lookup_error): Use it.
+	(cp_parser_check_for_invalid_template_id): Likewise.
+	(cp_parser_skip_to_closing_parenthesis): Likewise.
+	(cp_parser_nested_name_specifier_opt): Likewise.
+	(cp_parser_simple_declaration, cp_parser_template_id): Likewise.
+	(cp_parser_parameter_declaration_list): Likewise.
+	(cp_parser_parameter_declaration): Likewise.
+	(cp_parser_template_name): Let cp_parser_simulate_error perform
+	the checking.
+	(cp_parser_committed_to_tentative_parse): Remove.
+
+2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR c++/18968
+	* class.c (build_base_path): Convert the zero constant to the correct
+	type when comparing.
+
+2004-12-13  Mark Mitchell  <mark@codesourcery.com>
+
+	PR c++/18925
+	* class.c (layout_class_type): Determine the visibility of static
+	data members.
+
 2004-12-12  Roger Sayle  <roger@eyesopen.com>
 
 	PR middle-end/12454
--- /Users/regress/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog	Mon Dec 13 11:51:08 2004
+++ gcc/gcc/testsuite/ChangeLog	Tue Dec 14 08:13:40 2004
@@ -1,3 +1,36 @@
+2004-12-14  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR c++/18949
+	* g++.dg/template/cast1.C: New.
+
+2004-12-13  Richard Henderson  <rth@redhat.com>
+
+	* gcc.dg/i386-sse-10.c: Fix typo in options.
+
+2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR c++/18968
+	* g++.dg/opt/pr18968.C: New test.
+
+2004-12-13  Mark Mitchell  <mark@codesourcery.com>
+
+	PR c++/18925
+	* g++.dg/ext/visibility/staticdatamem.C: New test.
+
+2004-12-13  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* gcc.target/xstormy16/below100.S: Remove DOS line endings.
+
+2004-12-13  Roger Sayle  <roger@eyesopen.com>
+
+	PR rtl-optimization/18928
+	* gcc.dg/pr18928-1.c: New test case.
+
+2004-12-13  Alexandre Oliva  <aoliva@redhat.com>
+
+	PR tree-opt/16951
+	* gcc.c-torture/compile/20041211-1.c: New.
+
 2004-12-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
 	PR middle-end/17564

ChangeLog entries between 2004-12-13T19:49:41Z and the last time everything
passed, on 2004-10-26T03:57:45Z:
--- /Users/regress/tbox/changelog_pass/gcc/ChangeLog	Sun Oct 24 07:32:28 2004
+++ gcc/ChangeLog	Thu Dec  9 03:17:21 2004
@@ -1,3 +1,172 @@
+2004-12-08  David Edelsohn  <edelsohn@gnu.org>
+
+	* Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
+	* Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
+	(EXTRA_TARGET_FLAGS): Add PICFLAG.
+	* Makefile.in: Regenerate.
+
+2004-12-08  Christopher Faylor  <cgf@gcc.gnu.org>
+
+	* MAINTAINERS: Update my email address.
+
+2004-12-07  Matt Kraai  <kraai@ftbfs.org>
+
+	* Makefile.tpl: Generate normal dependencies if the LHS module is
+	not bootstrapped.
+	* Makefile.in: Regenerate.
+
+2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
+
+	* configure.in: Include config/gxx-include-dir.m4.  Use
+	TL_AC_GXX_INCLUDE_DIR.  Remove some now-redundant AC_SUBSTs.
+	* configure: Regenerate.
+
+2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
+
+	* config.if: Delete.
+	* configure.in: Set libstdcxx_incdir directly.
+	* configure: Regenerate.
+
+2004-12-02  Eric Christopher  <echristo@redhat.com>
+
+	* Makefile.tpl (clean-target-libgcc): Make change in correct place.
+	* Makefile.in: Regenerate.
+
+2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
+
+	* configure.in: Clear gcc_version_trigger if the file doesn't exist.
+	* configure: Regenerate.
+
+2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
+
+	* configure.in: Include config/gcc-version.m4.  Use TL_AC_GCC_VERSION
+	to set gcc_version_trigger.  Remove some now-redundant AC_SUBSTs.
+	* configure: Regenerate.
+
+2004-12-01  Eric Christopher  <echristo@redhat.com>
+
+	* Makefile.in (clean-target-libgcc): Add stmp-dirs to list
+	of things to remove.
+
+2004-11-29  Matt Kraai  <kraai@ftbfs.org>
+
+	* MAINTAINERS (Write After Approval): Update my e-mail address.
+
+2004-11-29  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Re-import linux-gnu case
+	from CVS libtool to always pass_all.
+
+2004-11-25  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	* configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
+	(hppa*64*-*-*): Delete incorrect comment.
+	* configure: Rebuilt.
+
+2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Revert previous change.
+
+2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Import linux-gnu case
+	from CVS libtool to always pass_all.
+
+2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* install-sh, compile: Import from automake.
+
+2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
+
+	* config.guess, config.sub:  Import from savannnah.
+
+2004-11-12  Scott Robert Ladd  <scott.ladd@coyotegulch.com>
+
+	* MAINTAINERS (Write After Approval): Add myself
+
+2004-11-12  Mike Stump  <mrs@apple.com>
+
+	* Makefile.def: Add html support.
+	* Makefile.tpl: Likewise.
+	* Makefile.in: Regenerate.
+
+2004-11-11  Geoffrey Keating  <geoffk@apple.com>
+
+	PR 18423
+	* configure.in: Remove all instances of build-fixincludes from
+	noconfigdirs.
+	(build_configargs): Supply --target to subdirectories.
+	* configure: Regenerate.
+
+	* Makefile.def: Make gcc install depend on fixincludes install.
+	* Makefile.in: Regenerate.
+
+2004-11-10  Janis Johnson  <janis187@us.ibm.com>
+
+	* MAINTAINERS: Add myself as gcc testsuite maintainer.
+
+2004-11-11  Paul Brook  <paul@codesourcery.com>
+
+	* MAINTAINERS: Add self as arm maintainer.  Update email address.
+
+2004-11-08  Hans-Peter Nilsson  <hp@bitrange.com>
+
+	* configure.in (noconfigdirs) [mmix-*-*]: Disable
+	target-libgfortran.
+	* configure: Regenerate.
+
+2004-11-07  David Edelsohn  <edelsohn@gnu.org>
+
+	* config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
+	like CC.
+
+2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
+
+	* Makefile.def (host fixincludes): Specify missing targets.
+	* Makefile.in: Regenerate.
+
+2004-11-05  Ralf Corsepius  <ralf.corsepius@rtems.org>
+
+	* MAINTAINERS: Add myself
+
+2004-11-05  Gabor Loki  <loki@inf.u-szeged.hu>
+
+	* MAINTAINERS (Write After Approval): Add myself.
+
+2004-11-04  Geoffrey Keating  <geoffk@apple.com>
+
+	* Makefile.def: Build fixincludes for the host, too.
+	* Makefile.in: Regenerate.
+	* configure.in (host_tools): Add fixincludes.
+	* configure: Regenerate.
+
+2004-11-04  Daniel Jacobowitz  <dan@debian.org>
+
+	* configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
+	* configure: Regenerated.
+
+2004-11-04  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR other/17783
+	* configure.in: Set up LD_LIBRARY_PATH by default for gcc.
+	* configure: Regenerated.
+
+2004-10-31  Mark Mitchell  <mark@codesourcery.com>
+
+	* README.SCO: Update per FSF instructions.
+
+2004-10-28  Eric B. Weddington  <ericw@evcohs.com>
+
+	PR target/18151
+	* configure.in (case ${target}): Do not build fixincludes for avr.
+	* configure: Regenerated.
+
+2004-10-26  Paolo Bonzini  <bonzini@gnu.org>
+
+	* configure.in (case ${target}): Do not build fixincludes
+	on platforms where it is not used.
+	* configure: Regenerated.
+
 2004-10-23  Daniel Jacobowitz  <dan@debian.org>
 
 	* configure.in: Use an absolute path to install-sh.
--- /Users/regress/tbox/changelog_pass/gcc/gcc/ChangeLog	Mon Oct 25 20:58:45 2004
+++ gcc/gcc/ChangeLog	Mon Dec 13 11:50:55 2004
@@ -1,3 +1,6149 @@
+2004-12-13  David Edelsohn  <edelsohn@gnu.org>
+
+	* xcoffout.c (xcoffout_declare_function): Always strip storage
+	class encoding.
+
+2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR target/18964
+	* config/darwin.c (darwin_assemble_visibility): Fix minor diadnostic
+	problem, adding a space at the end of the string before concatenation.
+
+2004-12-13  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* c-common.c (fname_as_string): Free namep if we are returning
+	cstr.text.
+
+	* tree-ssa-dom.c (record_edge_info): Fix memory leak.
+
+2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	* tree-cfg.c (remove_useless_stmts_cond): Call fold on COND_EXPR_COND.
+
+2004-12-13  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-ssa-dom.c (record_equivalences_from_phis): Speed up by
+	doing a pointer comparison.
+
+	* tree-ssa-dom.c (record_equivalences_from_phis): Add a
+	comment.
+
+	* defaults.h, stmt.c, tree-cfg.c, tree-ssa-dce.c: Fix comment
+	typos.
+
+2004-12-13  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
+
+	* config/m32r/t-linux (SHLIB_MAPFILES): Add libgcc-glibc.ver to
+	the list rather than replacing the existing value.
+
+2004-12-13  Richard Henderson  <rth@redhat.com>
+
+	* cfg.c (dump_flow_info): Don't dump pseudo info after reload.
+
+2004-12-13  Richard Henderson  <rth@redhat.com>
+
+	* Makefile.in (insn-preds.o): Depend on REGS_H.
+	* genpreds.c (write_insn_preds_c): Include regs.h.
+	* config/i386/predicates.md (index_register_operand): Use
+	REG_OK_FOR_INDEX_STRICT_P and REG_OK_FOR_INDEX_NONSTRICT_P.
+
+	* config/i386/i386.h (REG_CLASS_FROM_LETTER): Add 'l'.
+	* config/i386/i386.md (lea_general_1, lea_general_1_zext,
+	lea_general_2, lea_general_2_zext, lea_general_3, lea_general_3_zext,
+	adddi_1_rex64, addsi_1, addsi_1_zext, addhi_1_lea, addqi_1_lea,
+	ashldi3_1_rex64, ashlsi3_1, ashlsi3_1_zext, ashlhi3_1_lea,
+	ashlqi3_1_lea): Use 'l' for index register operand.
+	(ashldi3_1_rex64 splitter): Use index_register_operand.
+	(ashlsi3_1 splitter): Be more careful with modes.
+
+2004-12-13  Danny Smith  <dannysmith@users.sourceforge.net>
+
+	PR target/18459
+	* defaults.h (TARGET_USE_JCR_SECTION): New macro.
+	* doc/tm.texi (TARGET_USE_JCR_SECTION): Document it.
+	* config/i386/cygming.h (TARGET_USE_JCR_SECTION): Override
+	default.
+
+2004-12-13 Uros Bizjak <uros@kss-loka.si>
+
+	PR target/14941
+	PR target/18503
+	* config/i386/i386.md (sse_movss, sse2_movsd, sse2_movhpd):
+	Fix wrong vec_merge selector bitmask.
+
+2004-12-12  Richard Henderson  <rth@redhat.com>
+
+	PR rtl-opt/17186
+	* reg-stack.c (move_nan_for_stack_reg): New.
+	(subst_stack_regs_pat): Use it.
+	(move_for_stack_reg): Handle source register not live with a nan.
+
+2004-12-12  Richard Henderson  <rth@redhat.com>
+
+	* config/i386/i386.c (ix86_gimplify_va_arg): Fix type mismatch
+	errors across operations.
+
+2004-12-12  Di-an Jan  <dianj@freeshell.org>  
+
+	* doc/passes.texi (Pass Manager): Correct list of source files.
+
+2004-12-12  Richard Henderson  <rth@redhat.com>
+
+	* expr.c (emit_move_change_mode): New.
+	(emit_move_via_alt_mode): Use it.
+
+2004-12-12  Nathanael Nerode  <neroden@gcc.gnu.org>
+	    John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	PR middle-end/17564
+	* dojump.c (do_compare_and_jump): Only canonicalize function pointers
+	in a comparison if both sides are function pointers.
+
+2004-12-12  Richard Henderson  <rth@redhat.com>
+
+	PR target/18932
+	* config/i386/i386.md (all splits and peepholes): Use flags_reg_operand
+	and compare_operator to propagate the input CC mode to the output.
+	* config/i386/predicates.md (compare_operator): New.
+
+2004-12-12  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR tree-opt/18040
+	* expr.c (get_inner_reference): Remove NON_LVALUE_EXPR, NOP_EXPR,
+	CONVERT_EXPR cases.
+	(handled_component_p): Likewise.
+
+2004-12-12  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* reg-stack.c (convert_regs_2): Free stack.
+
+	* tree-ssa-dom.c (thread_across_edge, dom_opt_finalize_block): Fix
+	comment typos.
+
+2004-12-12  Daniel Berlin  <dberlin@dberlin.org>
+
+	* tree-ssa-loop-ch.c (copy_loop_headers): Loop can be null.
+	* tree-ssa-loop-im.c (determine_lsm): tree_root may not have a real
+	inner loop.
+
+2004-12-12  Diego Novillo  <dnovillo@redhat.com>
+
+	* tree-gimple.c (get_base_address): Update documentation.
+
+2004-12-12  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* lcm.c (optimize_mode_switching): Free ptr even when mode_set
+	is NULL_RTX.
+
+2004-12-12  Roger Sayle  <roger@eyesopen.com>
+
+	* reg-stack.c (change_stack): Avoid placing the new top-of-stack in
+	its correct location during popping if we need to permute the stack
+	afterwards.  Attempt to preserve the original stack ordering.
+
+2004-12-12  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* lcm.c (optimize_mode_switching): Free insert and delete in
+	the "for" loop.
+
+2004-12-11  David Edelsohn  <edelsohn@gnu.org>
+	    Ulrich Weigand  <uweigand@de.ibm.com>
+
+	PR target/18641
+	* config/rs6000/darwin.h (PREFERRED_RELOAD_CLASS): Reload all
+	constants into all register classes intersecting with FLOAT_REGS
+	via memory.
+	* config/rs6000/rs6000.h (PREFERRED_RELOAD_CLASS): Same.
+	* config/rs6000/rs6000.md (movdi_internal32): Ignore FPRs when
+	choosing register preferences.
+	(movdi_internal64): Same.
+
+2004-12-11  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-into-ssa.c (rewrite_ssa_into_ssa): Free SSA_NAME_AUX
+	before we release an SSA_NAME.
+
+2004-12-11  Roger Sayle  <roger@eyesopen.com>
+
+	PR middle-end/18921
+	* fold-const.c (fold_unwidened_comparison): Use omit_one_operand
+	instead of constant_boolean_node as arg0 may have side-effects.
+
+2004-12-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	* pa-host.c (pa_gt_pch_use_address): Use lseek and read to copy PCH
+	file to anonymous private map.
+
+2004-12-10  Roger Sayle  <roger@eyesopen.com>
+
+	PR target/18002
+	PR middle-end/18424
+	* dojump.c (do_jump): When attempting to reverse the effects of
+	fold_single_bit_test, we need to STRIP_NOPS and narrowing type
+	conversions, and handle BIT_XOR_EXPR that's used to invert the
+	sense of the single bit test.
+
+2004-12-10  Devang Patel  <dpatel@apple.com>
+
+	PR 18732
+	* gcc.c (main): Do not break out of loop when error is reported while
+	processing one source file.
+	
+2004-12-10  Diego Novillo  <dnovillo@redhat.com>
+
+	* tree-into-ssa.c (REWRITE_THIS_STMT): Define.
+	(mark_def_sites): Clear REWRITE_THIS_STMT for statements that
+	don't need any operands rewritten.
+	(rewrite_stmt): Ignore statements that don't need to be
+	rewritten.
+	(rewrite_operand): Validate that an existing SSA_NAME is
+	identical to the current reaching definition of the operand.
+
+2004-12-10  Diego Novillo  <dnovillo@redhat.com>
+
+	* tree-dfa.c (mark_call_clobbered_vars_to_rename): New function.
+	* tree-vectorizer.c (vectorizable_load): Call it.
+	* tree-flow.h (mark_call_clobbered_vars_to_rename): Declare.
+	* tree-sra.c (mark_all_v_defs): Also mark VUSEs for renaming.
+
+2004-12-10  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* regmove.c (combine_stack_adjustments_for_block): Free
+	memlist if it hasn't been freed.
+
+2004-12-10  Ziemowit Laski  <zlaski@apple.com>
+
+	* c-typeck.c (lookup_field): Check if a TYPE_LANG_SPECIFIC
+	pointer field is set before dereferencing it.
+
+2004-12-10  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR middle-end/18903
+	* tree-cfg.c (remove_bb): Put the moved label at the beginning
+	of the basic block.
+
+2004-12-10  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-data-ref.c (free_data_refs): Free each data_reference
+	object.
+
+	* tree-ssa-dom.c (thread_across_edge): Speed up by avoiding a
+	call to is_gimple_min_invariant if we know the result.
+
+2004-12-10  Jeff Law  <law@redhat.com>
+
+	* tree-ssa-alias.c (setup_pointers_and_addressables): Remove
+	redundant test of v_ann->mem_tag_kind.
+
+	* tree-ssa-operands.c (get_indirect_ref_operands): Remove
+	redundant conditional clearing opf_kill_def.
+
+2004-12-10  Richard Sandiford  <rsandifo@redhat.com>
+
+	* config/frv/frv-modes.def: Fix comment typos.
+	(CC_NZ): Define new mode.
+	* config/frv/frv-protos.h (frv_select_cc_mode): Declare.
+	(condexec_intop_cmp_operator): Delete.
+	* config/frv/frv.c (comparison_string): New function.
+	(frv_print_operand): Use it to handle 'c' and 'C'.
+	(relational_operator): Redefine in terms of integer_relational_operator
+	and float_relational_operator.
+	(signed_relational_operator, unsigned_relational_operator): Delete.
+	(integer_relational_operator): New predicate, combining the above.
+	Check the mode of the first operand but leave frv.md to check the rest.
+	(float_relational_operator): Just check the mode of the first operand
+	and leave frv.md to check the rest.
+	(intop_compare_operator): Assume the result is compared with zero
+	in mode CC_NZmode.  Allow PLUS and MINUS.  Leave frv.md to check
+	the operand predicates.
+	(condexec_intop_cmp_operator): Delete.
+	(frv_ifcvt_modify_tests, frv_ifcvt_modify_multiple_tests)
+	(frv_hard_regno_mode_ok): Handle CC_NZmode.
+	(frv_select_cc_mode): New function.
+	* config/frv/frv.h (SELECT_CC_MODE): Use frv_select_cc_mode.
+	(REVERSIBLE_CC_MODE): Include CC_NZmode.
+	(PREDICATE_CODES): Replace entries for signed_relational_operand and
+	unsigned_relational_operator with one for integer_relational_operator.
+	Delete entry for condexec_intop_cmp_operator.
+	* config/frv/frv.md (movcc_nz, *internal_movcc_nz, reload_incc_nz)
+	(reload_outcc_nz, *cmpsi_cc_nz, *cond_exec_cmpsi_cc_nz): New patterns.
+	(*combo_intop_compare2, *combo_intop_compare4): Delete.
+	(*combo_intop_compare1): Change mode to CC_NZ.
+	(*combo_intop_compare2): Likewise.  Renamed from *combo_intop_compare3.
+	(branch_{un,}signed_true, branch_{un,}signed_false)
+	(*scc_{un,}signed, *scc_neg1_{un,}signed, *ck_{un,}signed)
+	(*movqicc_internal1_{un,}signed, *movqicc_internal2_{un,}signed)
+	(*movhicc_internal1_{un,}signed, *movhicc_internal2_{un,}signed)
+	(*movsicc_internal1_{un,}signed, *movsicc_internal2_{un,}signed)
+	(*movsfcc_has_fprs_{un,}signed, *movsfcc_no_fprs_{un,}signed)
+	(*return_{unsigned_,}true, *return_{unsigned_,}false): Merge these
+	pattern pairs.  Use integer_relational_operator.  Remove mode from
+	icc_operand.
+
+2004-12-10  Mark Dettinger  <dettinge@de.ibm.com>
+
+	* config/s390/s390.c (struct processor_costs): New fields ml,
+	sqdbr, sqebr.
+	(s390_rtx_costs): Added the missing handling of multiply & add,
+	square root, and umulsidi.
+
+2004-12-10  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* expmed.c (synth_mult): Initialize new_limit.latency before
+	making a recursive call.
+
+2004-12-10  Nick Clifton  <nickc@redhat.com>
+
+	* config/mn10300/mn10300.c (legitimate_address_p): Reject address
+	whose index is itself the sum of two other parts.
+
+2004-12-10  Alan Modra  <amodra@bigpond.net.au>
+
+	* config/t-slibgcc-sld (SHLIB_LINK): Correct symlink.
+
+2004-12-10  Uros Bizjak  <uros@kss-loka.si>
+
+	* config/i386/i386.md (*cmpfp_sf): Change type attribute to "multi".
+
+2004-12-09  Richard Henderson  <rth@redhat.com>
+
+	PR c/18282
+	* attribs.c (decl_attributes): Use relayout_decl.
+	* c-common.c (handle_mode_attribute): Copy all relevant type
+	parameters from the new underlying integral type.
+
+2004-12-09  Richard Henderson  <rth@redhat.com>
+
+	* c-common.c (shorten_compare): Don't special-case min/maxval
+	for C enumerations.
+
+2004-12-09  Richard Sandiford  <rsandifo@redhat.com>
+
+	* simplify-rtx.c (simplify_subreg): In the CONCAT case, check whether
+	the request subreg is entirely contained in the requested component.
+	(simplify_gen_subreg): Return null for CONCATs that are rejected
+	by simplify_subreg.
+	* expmed.c (store_bit_field): Create a temporary when changing the
+	value to an integer mode.
+
+2004-12-09  David Edelsohn  <edelsohn@gnu.org>
+
+	* real.c (ibm_extended): Correct comment.
+
+2004-12-09  Stan Shebs  <shebs@apple.com>
+
+	* config/rs6000/darwin-asm.h: New file, 32/64-bit assembly macros
+	formerly in darwin-tramp.asm.
+	* config/rs6000/darwin-tramp.asm: Include darwin-asm.h.
+	* config/rs6000/darwin-fpsave.asm: Use 32/64-bit macros.
+	* config/rs6000/t-darwin: Add dependencies.
+
+2004-12-09  Richard Henderson  <rth@redhat.com>
+
+	PR target/17025
+	* config/i386/i386.md (testqi_1_maybe_si, andqi_2_maybe_si): New.
+	(test_qi_1, andqi_2): Do not promote to simode.
+
+2004-12-09  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	PR tree-opt/18904
+	* tree-chrec.c (chrec_convert): Use fold_convert
+	instead of convert.
+
+2004-12-09  Matt Rice  <ratmice@yahoo.com>
+
+	PR preprocessor/18102
+	* c-incpath.c (remove_duplicates): Check for construct
+	equality.
+
+2004-12-09  Dorit Naishlos  <dorit@il.ibm.com>
+
+	* genopinit.c (vec_realign_store_optab): Initialization removed.
+	* optabs.c (optab_for_tree_code): REALIGN_STORE_EXPR case removed.
+	* optabs.h (optab_index): OTI_vec_realign_store Removed.
+	(vec_realign_store_optab): Removed.
+	* target-def.h (TARGET_VECTORIZE_BUILTIN_MASK_FOR_STORE): Removed.
+	* target.h (builtin_mask_for_store): Removed.
+	* tree.def (REALIGN_STORE_EXPR): Removed.
+	* config/rs6000/rs6000.c (rs6000_builtin_mask_for_store): Removed.
+	(altivec_builtin_mask_for_store): Removed.
+	(altivec_init_builtins): Removed initialization of
+	altivec_builtin_mask_for_store.
+
+	* doc/tm.texi (TARGET_VECTORIZE_MISALIGNED_MEM_OK): New.
+	(TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD): New.
+
+2004-12-09  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* tree.def (SET_TYPE): Remove.
+	(CONSTRUCTOR): Update description.
+	* builtins.c (type_to_class) Remove SET_TYPE case.
+	* dbxout.c (dbxout_type): Likewise.
+	* dwarf2out.c (is_base_type): Likewise.
+	(gen_set_type_die): Remove.
+	(gen_type_die): Remove SET_TYPE case.
+	* expr.c (count_type_elements): Likewise.
+	(mostly_zeroes_p): Likewise.
+	(store_constructor): Likewise.
+	* print_tree.c (print_node): Likewise.
+	* stor-layout.c (layout_type): Likewise.
+	* tree-browser.c (browse_tree): Likewise.
+	* tree-inline.c (remap_type): Likewise.
+	* tree-pretty-print.c (dump_generic_node): Likewise.
+	* tree.c (type_contains_plaeholder_1, type_hash_eq,
+	variably_modified_type_p, initializer_zerop): Likewise.
+	* tree.h (SET_OR_ARRAY_CHECK): Remove.
+	(AGGREGATE_TYPE_P): Remove SET_TYPE check.
+	(TYPE_DOMAIN): Use ARRAY_TYPE_CHECK.
+	* typeclass.h (enum type_class): Remove set_type_class.
+	* varasm.c (const_hash_1): Remove SET_TYPE case.
+	(compare_constant, copy_constant, output_constant): Likewise.
+	* config/i386/i386.c (classify_argument): Likewise.
+	* config/ia64/ia64.c (hfa_element_mode): Likewise.
+	* config/sparc/sparc.c (sparc_type_code): Likewise.
+
+	PR c++/16681
+	* tree-inline.c (estimate_num_insns_1): Add RANGE_EXPR case.
+
+2004-12-08  Richard Henderson  <rth@redhat.com>
+
+	* config/i386/i386.md: Use FLAGS_REG everywhere.
+
+2004-12-08  Eric Christopher  <echristo@redhat.com>
+
+	* config/mips/mips.c (mips_scalar_mode_supported_p): Rewrite
+	to avoid call to default function.
+
+2004-12-08  Zack Weinberg  <zack@codesourcery.com>
+
+	PR 17982
+	* varasm.c (pending_assemble_externals): New static.
+	(assemble_external_real): Meat of assemble_external split out
+	to this new function.
+	(process_pending_assemble_externals): New function.
+	(assemble_external): Use gcc_assert.  If flag_unit_at_a_time
+	is true and the basic test passes, merely cons the decl onto
+	the pending list to be handled later.
+	* tree.h: Declare process_pending_assemble_externals.
+	* cgraphunit.c (cgraph_optimize): Call it.
+
+	* config/h8300/h8300.h: Do not define ASM_OUTPUT_EXTERNAL.
+
+2004-12-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* cfgloopmanip.c (create_preheader): Speed up by "unrolling"
+	and simplifying FOR_EACH_EDGE.
+
+2004-12-08  Richard Sandiford  <rsandifo@redhat.com>
+
+	* config/frv/frv.c (frv_sort_insn_group): Always initialize
+	packet_group->nop.
+
+2004-12-08  Nathan Sidwell  <nathan@codesourcery.com>
+
+	PR c++/18672
+	* gimplify.c (canonicalize_addr_expr): Cope with array of
+	incomplete type.
+	(gimplify_conversion): Remove redundant checks.
+
+	* doc/trouble.texi (Non-bugs): Clarify empty loop removal.
+
+2004-12-08  Uros Bizjak  <uros@kss-loka.si>
+
+	* config/i386/i386.c (output_387_binary_op,
+	ix86_prepare_fp_compare_args): Fix is_sse condition.
+
+2004-12-07  Uros Bizjak  <uros@kss-loka.si>
+
+	* config/i386/i386-protos.h (ix86_split_fp_branch): New rtx
+	argument.
+
+	* config/i386/i386.c (output_fp_compare): Fix is_sse condition.
+	Use EFLAGS_P only when fcomi insn should be used. Fix handling
+	of eflags_p variable. Change alt table accordingly. For non-fcomi
+	compare insn always use trailing fnstsw insn. Fix intmode
+	calculation for ficom insn.
+	(ix86_split_fp_branch): Add "rtx pushed" as new parameter. Call
+	ix86_free_from_memory when "pushed" is specified.
+	(ix86_expand_branch): Change call to ix86_split_fp_branch.
+
+	* config/i386/i386.md (*cmpfp_0_sf, *cmpfp_0_df, *cmpfp_0_xf):
+	Change eflags_p parameter in call to output_fp_compare.
+	(*cmpfp_2_sf, *cmpfp_2_df, *cmpfp_2_xf): Remove.
+	(*cmpfp_2_sf_1, *cmpfp_2_df_1, *cmpfp_2_xf_1): Rename to
+	*cmpfp_2_sf, *cmpfp_2_df, *cmpfp_2_xf. 	Change eflags_p
+	parameter in call to output_fp_compare.
+	(*cmpfp_2_u): Remove.
+	(*cmpfp_2_u_1): Rename to *cmpfp_2_u. Change eflags_p parameter
+	in call to output_fp_compare.
+	(*ficom_1): Remove insn definition and corresponding define_split.
+	(*cmpfp_si): New insn definition.
+	(*fp_jcc_8): New insn definition. Add new splitters for
+	"memory_operand" and "register_operand".
+	(define_split): Add new parameter in call to ix86_split_fp_branch.
+
+	config/i386/predicates.md (float_operator): New predicate.
+
+2004-12-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* c-common.c (verify_tree): Don't check code length if we know
+	we are handling tcc_unary.
+	* print_tree.c (print_node): Remove code to handle RTL
+	appearing as a part of a tree node.
+	* tree-gimple.c (recalculate_side_effects): Rename fro as len.
+	* tree.c (build1_stat): Don't check TREE_CODE_LENGTH.
+	(PROCESS_ARG): Don't refer to fro.
+	(build2_stat, build3_stat, build4_stat): Don't compute fro.
+
+2004-12-07  Roger Sayle  <roger@eyesopen.com>
+
+	PR middle-end/18293
+	* expmed.c (EXACT_POWER_OF_2_OR_ZERO_P): Move definition earlier.
+	(expand_mult): Special case powers of two to avoid synth_mult.
+	* loop.c (product_cheap_p): Handle case where expand_mult does
+	require/generate any instructions (i.e. multiplication by zero).
+
+2004-12-07  Richard Henderson  <rth@redhat.com>
+
+	* tree-pretty-print.c (dump_array_domain): Split out from
+	dump_generic_node; fix off-by-one error on zero-based array bounds.
+	(dump_generic_node): Use it.
+	(print_declaration): Likewise.
+
+2004-12-08  Richard Guenther <richard.guenther@uni-tuebingen.de>
+
+	* doc/invoke.texi: Adjust default values for
+	large-function-growth and inline-unit-growth to match
+	params.def.  Clarify used algorithm.
+
+2004-12-07  David Mosberger  <davidm@hpl.hp.com>
+
+	PR target/18443
+	* config/ia64/ia64.c (ia64_assemble_integer): Add support for
+	emitting unaligned pointer-sized integers.
+
+2004-12-07  Steven Bosscher  <stevenb@suse.de>
+
+	PR c/18867
+	* c-typeck.c (c_start_case): Set orig_type to error_mark_node
+	when the type of the controlling expression is not a valid type.
+
+2004-12-07  Steven Bosscher  <stevenb@suse.de>
+
+	PR tree-optimization/17340
+	* tree-ssa-pre.c (compute_antic): Fix comment.
+	(compute_avail): Do not recurse, instead do a DFS using a stack
+	and a loop.
+	(execute_pre): Adjust.
+
+2004-12-07  Ziemowit Laski  <zlaski@apple.com>
+
+	* c-tree.h (struct lang_type): Rename 'objc_protocols' field
+	to 'objc_info'.
+
+2004-12-07  Eric Christopher  <echristo@redhat.com>
+
+	PR target/16317
+	* config/netbsd.h (NO_IMPLICIT_EXTERN_C): Define.
+
+2004-12-07  Eric Christopher  <echristo@redhat.com>
+
+	* config/mips/mips-protos.h (mips_valid_pointer_mode): Move
+	prototype...
+	* config/mips/mips.c: ... here. Make static.
+
+2004-12-07  Eric Christopher  <echristo@redhat.com>
+
+	PR target/18442
+	* config/mips/mips.c (mips_vector_mode_supported_p): New function.
+	(TARGET_SCALAR_MODE_SUPPORTED_P): Define to above.
+
+2004-12-07  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* c-common.c, expr.c, fold-const.c, print-tree.c,
+	tree-gimple.c, tree-inline.c, tree-pretty-print.c,
+	tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c: Replace uses of
+	first_rtl_op with TREE_CODE_LENGTH.
+	* tree.c (first_rtl_op): Remove.
+	Replace uses of first_rtl_op with TREE_CODE_LENGTH.
+	* tree.h: Remove the prototype for first_rtl_op.
+
+2004-12-07  David Edelsohn  <edelsohn@gnu.org>
+
+	* config/rs6000/t-aix43, config/rs6000/t-aix52 (SHLIB_LINK):
+	Revert 2004-12-01 change.
+
+2004-12-06  Ziemowit Laski  <zlaski@apple.com>
+
+	* c-tree.h (struct lang_type): Add 'objc_protocols' field.
+
+2004-12-06  DJ Delorie  <dj@redhat.com>
+
+	* reload.c (find_valid_class): Fix logic to test inner mode as well.
+	(push_reload): Pass inner mode.
+
+2004-12-06  Eric Christopher  <echristo@redhat.com>
+
+	* doc/tm.texi (TARGET_VALID_POINTER_MODE): Document.
+
+2004-12-06  Aldy Hernandez  <aldyh@redhat.com>
+
+	* config/rs6000/sysv4.h: Define RELOCATABLE_NEEDS_FIXUP to 1.
+
+2004-12-06  Zdenek Dvorak  <dvorakz@suse.cz>
+	    Kazu Hirata  <kazu@cs.umass.edu>
+
+	PR tree-optimization/18601
+	* tree-cfg.c (thread_jumps, thread_jumps_from_bb): Removed.
+	(tree_forwarder_block_p): Do not consider blocks that are its own
+	successors forwarders.
+	(cleanup_forwarder_blocks, remove_forwarder_block): New functions.
+	(cleanup_tree_cfg): Use cleanup_forwarder_blocks instead of
+	thread_jumps.
+	* tree-flow.h (bb_ann_d): Remove forwardable.
+
+2004-12-06  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* expr.c (expand_expr_real_1): Remove an "if" whose condition
+	is always false.
+
+2004-12-06  Roger Sayle  <roger@eyesopen.com>
+
+	* c-gimplify.c (gimplify_c_loop): Improve initial implementations
+	for loops whose conditions are known at compile-time.
+	* gimplify.c (append_to_statement_list_1): Remove side_effects
+	parameter, this function should never be called if its false.
+	(append_to_statement_list): Only call append_to_statement_list_1
+	if t is non-NULL tree with side-effects.
+	(append_to_statement_list_force):  Likewise, if t is not NULL.
+
+2004-12-06  J"orn Rennecke <joern.rennecke@st.com>
+
+	* bt-load.c (btr_def_s): New member own_end;
+	(add_btr_to_live_range): Add second parameter.  Changed caller.
+	(clear_btr_from_live_range): Clear btrs_live_at_end bit
+	for the register its definition basic block if own_end is set.
+	(augment_live_range): Also take btrs_live_at_end into account.
+	(combine_btr_defs): Don't bother with
+	other_def->other_btr_uses_after_use if it pertains to a different
+	register.
+	(move_btr_def): Set def->other_btr_uses_before_def after
+	calling combine_btr_defs."
+
+	* bt-load.c (augment_live_range): New argument full_range.
+	Changed all callers.
+
+	* bt-load.c (move_tr_def): Set other_tr_uses_before_def
+	taking new btr assignment into account.
+
+2004-12-05  Daniel Berlin <dberlin@dberlin.org>
+
+	* tree-ssa-alias.c (create_global_var): Use void_type_node,
+	not size_type_node.
+
+2004-12-05  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* expr.c (expand_expr_real_1): Abort on COND_EXPR of
+	VOID_TYPE.
+
+2004-12-05  Richard Henderson  <rth@redhat.com>
+
+	PR target/18841
+	* config/alpha/alpha.md (UNSPECV_SETJMPR_ER): New.
+	(builtin_setjmp_receiver_er_sl_1): Use it.
+	(builtin_setjmp_receiver_er_1): Likewise.
+	(builtin_setjmp_receiver_er, exception_receiver_er): Remove.
+	(builtin_setjmp_receiver): Don't split for explicit relocs until
+	after reload.
+	(exception_receiver): Likewise.
+
+2004-12-05  Andrew Pinski  <pinskia@physics.uc.edu>
+
+	* mklibgcc.in (vis_hide): Add the prototype for the test.
+
+2004-12-05  Roger Sayle  <roger@eyesopen.com>
+
+	* c-typeck.c (c_finish_loop): Improve initial implementations
+	for loops whose conditions are known at compile-time.
+
+2004-12-05  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* builtins.c: Fix comment typos.
+
+2004-12-04  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+	PR middle-end/18730
**** TRUNCATED ****
-------------- next part --------------
-- 
Geoffrey Keating <geoffk@apple.com> 
(via an automated GCC regression-testing script.)


More information about the Gcc-regression mailing list