7 GCC HEAD regressions, 1 new, with your patch on 2005-03-31T23:52:22Z.
GCC regression checker
geoffk@apple.com
Fri Apr 1 13:55:00 GMT 2005
With your recent patch, GCC HEAD has some regression test failures,
which used to pass. There are 1 new failures, and 6
failures that existed before and after that patch; 2 failures
have been fixed.
The new failures are:
native g++.sum g++.old-deja/g++.jason/warning9.C
The old failures, which were not fixed or introduced by your patch, are:
native libjava.sum Array_3
native libstdc++.sum 26_numerics/complex/13450.cc
native libstdc++.sum 27_io/basic_filebuf/seekoff/char/1-io.cc
native libstdc++.sum 27_io/basic_filebuf/seekoff/char/2-io.cc
native libstdc++.sum 27_io/basic_filebuf/seekpos/char/1-io.cc
native libstdc++.sum 27_io/basic_filebuf/seekpos/char/2-io.cc
The fixed failures are:
native gcc.sum gcc.c-torture/compile/20011119-1.c
native gcc.sum gcc.c-torture/compile/20011119-2.c
For more information, see http://gcc.gnu.org/regtest/.
-------------- next part --------------
ChangeLog entries since last run on 2005-03-31T09:55:19Z:
--- /Users/regress/tbox/changelog_mail/gcc/gcc/ChangeLog Thu Mar 31 01:56:32 2005
+++ gcc/gcc/ChangeLog Thu Mar 31 15:53:32 2005
@@ -1,6 +1,262 @@
-2005-03-31 Mostafa Hagog <mustafa@il.ibm.com>
+2005-04-01 Joseph S. Myers <joseph@codesourcery.com>
- * testsuite/gcc.dg/20050330-1.c: New test.
+ PR c/17855
+ * gimplify.c (gimplify_expr): Create a temporary for lvalue
+ COND_EXPR and CALL_EXPR.
+
+2005-03-31 Vladimir Makarov <vmakarov@redhat.com>
+
+ PR target/20632
+ * genautomata.c (first_cycle_unit_presence): Check all alternative
+ states for unit presence.
+
+ * doc/md.texi: Remove remark about impossibility to query unit
+ presence in non nondeterministic automaton state.
+
+ * config/ia64/ia64.c (get_template): Change order of unit querying.
+
+2005-03-31 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-dom.c (cprop_into_successor_phis): Remove an
+ obsolete comment.
+
+2005-03-31 Zdenek Dvorak <dvorakz@suse.cz>
+
+ * cfgloopanal.c (mark_loop_exit_edges): Clean EDGE_LOOP_EXIT
+ flag for edges outside any loops.
+
+2005-03-31 Janis Johnson <janis187@us.ibm.com>
+
+ * doc/sourcebuild.texi (Test Directives): Describe cleanup-* procs.
+
+2005-03-31 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-alias.c: Follow spelling conventions.
+ * doc/tree-ssa.texi: Fix a typo.
+
+2005-03-31 J"orn Rennecke <joern.rennecke@st.com>
+
+ * postreload-gcse.c: Include target.h.
+ (gcse_after_reload_main): Return early if we cannot modify jumps.
+ * Makefile.in (postreload-gcse.o): Depend on $(TARGET_H).
+
+2005-03-31 David Edelsohn <edelsohn@gnu.org>
+
+ * tree-ssa-loop-im.c (stmt_cost): Add RDIV_EXPR to list of
+ expensive operations.
+
+2005-03-31 Ian Lance Taylor <ian@airs.com>
+
+ * collect2.c (lderrout): New variable.
+ (collect_exit): Dump ldout to stdout. Dump and unlink lderrout,
+ if it is set, to stderr.
+ (handler): Unlink lderrout if it is set.
+ (dump_file): Add "to" parameter. Change all callers.
+ (main): Initialize lderrout.
+ (collect_execute): Add errname parameter. Change all callers.
+ Rename redir parameter to outname. Never pass
+ PEX_STDERR_TO_STDOUT to pex_run.
+ * collect2.h (collect_execute, dump_file): Update declarations.
+ * tlink.c (tlink_execute): Add errname parameter. Change all
+ callers.
+ (do_tlink): Check lderrout as well as ldout.
+
+2005-03-31 Caroline Tice <ctice@apple.com>
+
+ * Makefile.in (varasm.o): Add basic-block.h to list of requirements.
+ (bb-reorder.o): Add errors.h to list of requirements.
+ (STAGEFEEDBACK_FLAGS_TO_PASS): Add -freorder-blocks-and-partition to
+ profiledbootstrap flags.
+ * bb-reorder.c (errors.h): Add new include.
+ (struct bbro_basic_block_data_def): Add new field, in_trace.
+ (add_unlikely_executed_notes): Remove function.
+ (mark_bb_for_unlikely_executed_section): Remove function.
+ (insert_section_boundary_note): New function.
+ (verify_hot_cold_block_grouping): New function.
+ (push_to_next_round_p): Remove variables and tests that push all
+ cold blocks to last round.
+ (find_traces): Remove code that added extra round of trace finding
+ when doing partitioning.
+ (find_traces_1_round) : Remove variable last_round; add code to
+ update new struct field, in_trace; correct trace_length where it was
+ incorrect before (after call to copy_bb); change code that pushed all
+ cold blocks to last round. Instead verify that all blocks going into
+ a trace belong in the same partition.
+ (connect_traces): Modify to connect the traces in two passes, if the
+ function contains both hot and cold blocks. The first pass connects
+ all the traces for blocks in the partition that the first block in
+ the function belongs to; the second pass connnects all the traces
+ containing blocks that belong in the other partition.
+ (find_rarely_executed_basic_blocks_and_crossing_edges): Remove
+ code that automatically put the first block in a function into the
+ hot partition if the function had any hot blocks.
+ (fix_crossing_unconditional_branches): Check number of succ edges
+ before attempting to get one.
+ (fix_edges_for_rarely_executed_code): Update comment describing
+ function.
+ (reorder_basic_blocks): Add code to initialize new field (in_trace);
+ remove call to add_unlikely_executed_notes; add call to
+ verify_hot_cold_block_grouping.
+ (duplicate_computed_gotos): Don't change computed goto if it's a
+ crossing edge.
+ (partition_hot_cold_basic_blocks): Update function comment.
+ * cfgcleanup.c (try_simplify_condjump): Remove redundacy from
+ condition.
+ (try_forward_edges): Likewise.
+ (merge_blocks_move_predecessor_nojumps): Likewise.
+ (merge_blocks_move_successor_nojumps): Likewise.
+ (merge_blocks_move): Likewise.
+ (try_crossjump_bb): Likewise.
+ * cfglayout.c (update_unlikely_executed_notes): Remove function.
+ (fixup_reorder_chain): Remove code for adding UNLIKELY_EXECUTED_CODE
+ notes to cold bb's; remove call to update_unlikely_executed_notes.
+ (duplicate_insn_chain): change NOTE_INSN_UNLIKELY_EXECUTED_CODE to
+ NOTE_INSN_SWITCH_TEXT_SECTIONS.
+ * cfglayout.h (scan_ahead_for_unlikely_executed_note): Remove
+ function declaration.
+ * cfgrtl.c (can_delete_note_p): Remove UNLIKELY_EXECUTED_CODE note
+ from consideration.
+ (rtl_can_merge_blocks): Remove redundancy from condition.
+ (try_redirect_by_replacing_jump): Likewise.
+ (force_nonfallthru_and_redirect): Remove code for adding
+ UNLIKELY_EXECUTED_CODE notes to cold bb's.
+ (commit_one_edge_insertion): Likewise.
+ (cfg_layout_can_merge_blocks_p): Remove redundancy from condition.
+ * dbxout.c (FORCE_TEXT): Replace function_section with
+ current_function_section.
+ (struct dbx_debug_h): Add do_nothing function for new debug_hooks
+ function, switch_text_section.
+ (struct xcoff_debug): Likewise.
+ (dbxout_function_end): Add code to put out label diffs for both
+ hot and cold sections.
+ * debug.c (struct do_nothing_debug_hooks): Add do_nothing function
+ for new debug_hooks funciton, switch_text_section..
+ * debug.h (struct gcc_debug_hooks): Add new function to debug_hooks,
+ switch_text_section.
+ * dwarf2out.c (struct dw_fde_struct): Add five new fields:
+ dw_fde_hot_section_label, dw_fde_hot_section_end_label,
+ dw_fde_unlikely_section_label, dw_fde_unlikely_section_end_label and
+ dw_fde_switched_sections.
+ (output_call_frame_info): Add test to see if function switches text
+ sections in the middle; if so, use appropriate extra hot and cold
+ section labels to compute size deltas for the hot and cold sections.
+ (dwarf2out_begin_prologue): Add code to initialize new fields in
+ dw_fde_struct.
+ (dwarf2out_switch_text_section): New function (invoked through
+ debug_hook); updates new fields in dw_fde_struct appropriately and
+ increments separate_line_info_table_in_use.
+ (dwarf2_debug_hooks): Initialize switch_text_section function to be
+ dwarf2out_switch_text_section.
+ (struct var_loc_node): Add new field, section_label.
+ (output_aranges): Add code to check whether in hot or cold section and
+ use the appropriate label in calculating deltas.
+ (output_ranges): Likewise.
+ (output_line_info): Add code to check which section we're in and
+ use appropriate hot/cold label.
+ (add_location_or_constant_value_attribute): Likewise.
+ (gen_subprogam_die): Modify arange attributes to use correct labels.
+ (dwarf2out_begin_block): Change call to function_section into call to
+ current_function_section.
+ (dwarf2out_end_block): Likewise.
+ (dwarf2out_source_line): Likewise.
+ (dwarf2out_var_location): Add code to check whether in hot or cold
+ section and use the appropriate label.
+ * except.c (output_function_exception_table): Change call to
+ function_section into call to current_function_section.
+ * final.c (profile_function): Likewise.
+ (scan_ahead_for_unlikely_executed_note): Remove function.
+ (final_scan_insn): Remove calls to
+ scan_ahead_for_unlikely_executed_note, and related code for switching
+ to cold section, except for the single time
+ NOTE_INSN_SWITCH_TEXT_SECTIONS may be encountered; add calls to
+ debug_hooks->switch_text_sections; replace appropriate calls to
+ function_section with calls to current_function_section.
+ * ifcvt.c (find_if_case_1): Remove redundancy from condition, add
+ test_bb to condition.
+ (find_if_case_2): Likewise.
+ * insn-notes.def: Change NOTE_INSN_UNLIKELY_EXECUTED_CODE to
+ NOTE_INSN_SWITCH_TEXT_SECTIONS. Update comment appropriately.
+ * opts.c (decode_options): Change warning about hot/cold partitioning
+ with exceptionss to inform (so as not to cause bootstrap failures);
+ remove warning about partitioning with DWARF debug info.
+ * output.h (current_function_section): Add new function decl.
+ (insert_section_boundary_note): Likewise.
+ (enum in_section): Move this declaration here from varasm.c.
+ (unlikely_section_label): Likewise.
+ (unlikely_text_section_name): Likewise.
+ (last_text_section_name): New global variable.
+ (last_text_section): Likewise.
+ (hot_section_label): Likewise.
+ (hot_section_end_label): Likewise.
+ (cold_section_end_label): Likewise.
+ * passes.c (rest_of_handle_final): Free unlikely_text_section_name.
+ * print-rtl.c (print_rtx): Change NOTE_INSN_UNLIKELY_EXECUTED_CODE
+ to NOTE_INSN_SWITCH_TEXT_SECTIONS.
+ * reg-stack.c (emit_swap_insn): Remove UNLIKELY_EXECUTED_CODE note
+ insn from consideration.
+ * sdbout.c (sdb_debug_hooks): Add do_nothing for new function,
+ switch_text_section.
+ * varasm.c (basic-block.h): Add new include.
+ (unlikely_section_label_printed): Remove global variable.
+ (unlikely_section_label): Make global variable not be static any more.
+ (unlikely_text_section_name): Likewise.
+ (hot_section_end_label): New global variable (not static)
+ (first_function_block_is_cold): Likewise.
+ (hot_section_label): Likewise.
+ (cold_section_end_label): Likewise..
+ (last_text_section): New global variable, not static.
+ (last_text_section_name): New global variable, not static.
+ (initialize_cold_section_name): New function.
+ (enum in_section): Move declaration to output.h.
+ (text_section): Update last_text_section.
+ (unlikely_text_section): Replace code to determine cold section name
+ with call to initialize_cold_section_name; Add code to update
+ last_text_section; remove code for printing out label.
+ (named_section_real): Add code to update last_text_section and
+ last_text_section_name as appropriate.
+ (function_section): Change test for 'unlikely' to depend on
+ first_function_block_is_cold (moved old test to
+ current_function_section).
+ (current_function_section): New function.
+ (assemble_start_function): Move code that frees
+ unlikely_text_section_name; initialize hot_section_end_label;
+ print hot and cold section labels at the start of the function;
+ set first_function_block_is_cold, if appropriate; initialize l
+ ast_text_section; add call to insert_section_boundary_note.
+ (assemble_end_function): Add code to write out hot and cold section
+ end labels.
+ *vmsdbgout.c (vmsdbg_debug_hooks): Add do_nothing for new function,
+ switch_text_section.
+ * config/darwin.c (machopic_select_section): Replace incorrect
+ function in base_funs; update reloc for cold sections if necessary.
+ * config/darwin.h (SECTION_FUNCTION): Add code to update
+ last_text_section if appropriate.
+ (text_unlikely_section): Remove.
+ * config/sparc/sparc.c (sparc_output_deferred_case_vectors): Likewise.
+ * config/stormy16/stormy16.c (stormy_16_output_addr_vec): Likewise.
+ * config/xtensa/xtensa.c (override_options): Turn off hot/cold
+ partitioning for this architecture.
+
+2005-03-31 Olivier Hainque <hainque@adacore.com>
+
+ * dwarf2out.c (dwarf2out_frame_finish): Honor DWARF2_FRAME_INFO
+ defined and non-zero.
+
+2005-03-31 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ PR c++/18644
+ * doc/invoke.texi (-Wsynth): Don't document, as it now is void of
+ semantics.
+
+2005-03-31 Alan Modra <amodra@bigpond.net.au>
+
+ PR target/20611
+ * config/rs6000/rs6000.md (load_toc_v4_PIC_1b): Remove inline
+ label operand. Remove (use (unspec..)). Don't emit a label on
+ the offset word.
+ * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Don't
+ generate inline label for load_toc_v4_PIC_1b.
+ (rs6000_emit_load_toc_table): Likewise.
2005-03-31 Kazu Hirata <kazu@cs.umass.edu>
--- /Users/regress/tbox/changelog_mail/gcc/gcc/cp/ChangeLog Thu Mar 31 01:56:41 2005
+++ gcc/gcc/cp/ChangeLog Thu Mar 31 15:53:40 2005
@@ -1,3 +1,22 @@
+2005-03-31 Nathan Sidwell <nathan@codesourcery.com>
+
+ PR c++/19203, implement DR 214
+ * call.c (joust): Use more_specialized_fn.
+ * cp-tree.h (DEDUCE_ORDER): Remove.
+ (more_specialized): Replace with ...
+ (more_specialized_fn): ... this.
+ * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
+ case.
+ (type_unification_real): Remove DEDUCE_ORDER case.
+ (more_specialized): Replace with ...
+ (more_specialized_fn): ... this. Implement DR 214.
+ (most_specialized_instantiation): Use get_bindings_real directly.
+
+2005-03-31 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ PR c++/18644
+ * call.c (build_new_op): Remove check for -Wsynth.
+
2005-03-31 Jan Hubicka <jh@suse.cz>
* decl2.c (finish_objects): Mark ctor as needed.
--- /Users/regress/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog Thu Mar 31 01:56:45 2005
+++ gcc/gcc/testsuite/ChangeLog Thu Mar 31 15:53:46 2005
@@ -1,3 +1,195 @@
+2005-04-01 Joseph S. Myers <joseph@codesourcery.com>
+
+ PR c/17855
+ * gcc.c-torture/compile/struct-non-lval-1.c,
+ gcc.c-torture/compile/struct-non-lval-2.c,
+ gcc.c-torture/compile/struct-non-lval-3.c: New tests.
+
+2005-03-31 Janis Johnson <janis187@us.ibm.com>
+
+ * gcc.dg/tls/tls.exp: Remove temporary file.
+ * g++.dg/tls/tls.exp: Ditto.
+ * lib/file-format.exp: Ditto.
+ * g++.dg/special/ecos.exp: Ditto.
+
+ * lib/profopt.exp: Treat prof_ext as a list.
+ * gcc.misc-tests/bprob.exp: Ditto.
+ * g++.dg/bprob/bprob.exp: Ditto.
+
+ * g++.dg/opt/nothrow1.C: Use cleanup-tree-dump.
+ g++.dg/tree-ssa/empty-1.C, g++.dg/tree-ssa/nothrow-1.C,
+ g++.dg/tree-ssa/pointer-reference-alias.C,
+ g++.dg/tree-ssa/pr15791-3.C, g++.dg/tree-ssa/pr15791-4.C,
+ g++.dg/tree-ssa/pr15791-5.C, g++.dg/tree-ssa/ssa-cast-1.C
+ g++.dg/tree-ssa/ssa-sra-1.C, g++.dg/tree-ssa/ssa-sra-2.C: Ditto
+ g++.dg/vect/pr19951.cc: Ditto.
+ * gcc.dg/builtins-43.c, gcc.dg/builtins-44.c, gcc.dg/builtins-45.c,
+ gcc.dg/builtins-47.c: Ditto.
+ * gcc.dg/pr15784-1.c, gcc.dg/pr15784-2.c, gcc.dg/pr15784-3.c,
+ gcc.dg/pr20115-1.c: Ditto.
+ * gcc.dg/tree-ssa/20030530-2.c,
+ gcc.dg/tree-ssa/20030611-1.c, gcc.dg/tree-ssa/20030703-1.c,
+ gcc.dg/tree-ssa/20030703-2.c, gcc.dg/tree-ssa/20030708-1.c,
+ gcc.dg/tree-ssa/20030709-1.c, gcc.dg/tree-ssa/20030709-2.c,
+ gcc.dg/tree-ssa/20030709-3.c, gcc.dg/tree-ssa/20030710-1.c,
+ gcc.dg/tree-ssa/20030711-1.c, gcc.dg/tree-ssa/20030711-2.c,
+ gcc.dg/tree-ssa/20030711-3.c, gcc.dg/tree-ssa/20030714-1.c,
+ gcc.dg/tree-ssa/20030714-2.c, gcc.dg/tree-ssa/20030728-1.c,
+ gcc.dg/tree-ssa/20030729-1.c, gcc.dg/tree-ssa/20030730-1.c,
+ gcc.dg/tree-ssa/20030730-2.c, gcc.dg/tree-ssa/20030731-1.c,
+ gcc.dg/tree-ssa/20030731-2.c, gcc.dg/tree-ssa/20030807-1.c,
+ gcc.dg/tree-ssa/20030807-10.c, gcc.dg/tree-ssa/20030807-11.c,
+ gcc.dg/tree-ssa/20030807-2.c, gcc.dg/tree-ssa/20030807-3.c,
+ gcc.dg/tree-ssa/20030807-5.c, gcc.dg/tree-ssa/20030807-6.c,
+ gcc.dg/tree-ssa/20030807-7.c, gcc.dg/tree-ssa/20030807-8.c,
+ gcc.dg/tree-ssa/20030807-9.c, gcc.dg/tree-ssa/20030808-1.c,
+ gcc.dg/tree-ssa/20030814-1.c, gcc.dg/tree-ssa/20030814-2.c,
+ gcc.dg/tree-ssa/20030814-3.c, gcc.dg/tree-ssa/20030814-4.c,
+ gcc.dg/tree-ssa/20030814-5.c, gcc.dg/tree-ssa/20030814-6.c,
+ gcc.dg/tree-ssa/20030814-7.c, gcc.dg/tree-ssa/20030815-1.c,
+ gcc.dg/tree-ssa/20030824-1.c,
+ gcc.dg/tree-ssa/20030824-2.c, gcc.dg/tree-ssa/20030825-1.c,
+ gcc.dg/tree-ssa/20030907-1.c, gcc.dg/tree-ssa/20030917-1.c,
+ gcc.dg/tree-ssa/20030917-3.c, gcc.dg/tree-ssa/20030922-1.c,
+ gcc.dg/tree-ssa/20030922-2.c, gcc.dg/tree-ssa/20031015-1.c,
+ gcc.dg/tree-ssa/20031021-1.c, gcc.dg/tree-ssa/20031022-1.c,
+ gcc.dg/tree-ssa/20031106-1.c, gcc.dg/tree-ssa/20031106-2.c,
+ gcc.dg/tree-ssa/20031106-3.c, gcc.dg/tree-ssa/20031106-4.c,
+ gcc.dg/tree-ssa/20031106-5.c, gcc.dg/tree-ssa/20031106-6.c,
+ gcc.dg/tree-ssa/20031216-1.c, gcc.dg/tree-ssa/20040204-1.c,
+ gcc.dg/tree-ssa/20040210-1.c, gcc.dg/tree-ssa/20040211-1.c,
+ gcc.dg/tree-ssa/20040216-1.c, gcc.dg/tree-ssa/20040305-1.c,
+ gcc.dg/tree-ssa/20040430-1.c, gcc.dg/tree-ssa/20040513-1.c,
+ gcc.dg/tree-ssa/20040513-2.c, gcc.dg/tree-ssa/20040514-1.c,
+ gcc.dg/tree-ssa/20040514-2.c, gcc.dg/tree-ssa/20040517-1.c,
+ gcc.dg/tree-ssa/20040518-1.c, gcc.dg/tree-ssa/20040518-2.c,
+ gcc.dg/tree-ssa/20040615-1.c, gcc.dg/tree-ssa/20040624-1.c,
+ gcc.dg/tree-ssa/20040703-1.c, gcc.dg/tree-ssa/20040721-1.c,
+ gcc.dg/tree-ssa/20040729-1.c, gcc.dg/tree-ssa/20040911-1.c,
+ gcc.dg/tree-ssa/20041002-1.c, gcc.dg/tree-ssa/20041122-1.c,
+ gcc.dg/tree-ssa/20050128-1.c, gcc.dg/tree-ssa/20050215-1.c,
+ gcc.dg/tree-ssa/asm-1.c, gcc.dg/tree-ssa/asm-2.c,
+ gcc.dg/tree-ssa/asm-3.c, gcc.dg/tree-ssa/cfgcleanup-1.c,
+ gcc.dg/tree-ssa/complex-1.c, gcc.dg/tree-ssa/complex-2.c,
+ gcc.dg/tree-ssa/copy-headers.c, gcc.dg/tree-ssa/ifc-20040816-1.c,
+ gcc.dg/tree-ssa/ifc-20040816-2.c, gcc.dg/tree-ssa/inline_asm-1.c,
+ gcc.dg/tree-ssa/inline_asm-2.c, gcc.dg/tree-ssa/loop-1.c,
+ gcc.dg/tree-ssa/loop-2.c, gcc.dg/tree-ssa/loop-3.c,
+ gcc.dg/tree-ssa/loop-4.c, gcc.dg/tree-ssa/loop-5.c,
+ gcc.dg/tree-ssa/loop-6.c, gcc.dg/tree-ssa/loop-7.c,
+ gcc.dg/tree-ssa/ltrans-1.c, gcc.dg/tree-ssa/ltrans-2.c,
+ gcc.dg/tree-ssa/ltrans-3.c, gcc.dg/tree-ssa/ltrans-4.c,
+ gcc.dg/tree-ssa/ltrans-5.c, gcc.dg/tree-ssa/pr15349.c,
+ gcc.dg/tree-ssa/pr15791-3.c, gcc.dg/tree-ssa/pr15791-4.c,
+ gcc.dg/tree-ssa/pr15791-5.c, gcc.dg/tree-ssa/pr16721.c,
+ gcc.dg/tree-ssa/pr19633.c, gcc.dg/tree-ssa/sra-1.c,
+ gcc.dg/tree-ssa/sra-2.c, gcc.dg/tree-ssa/sra-3.c,
+ gcc.dg/tree-ssa/ssa-ccp-1.c, gcc.dg/tree-ssa/ssa-ccp-10.c,
+ gcc.dg/tree-ssa/ssa-ccp-11.c, gcc.dg/tree-ssa/ssa-ccp-2.c,
+ gcc.dg/tree-ssa/ssa-ccp-3.c, gcc.dg/tree-ssa/ssa-ccp-7.c,
+ gcc.dg/tree-ssa/ssa-ccp-9.c, gcc.dg/tree-ssa/ssa-dce-1.c,
+ gcc.dg/tree-ssa/ssa-dce-2.c, gcc.dg/tree-ssa/ssa-dce-3.c,
+ gcc.dg/tree-ssa/ssa-dom-ccp-1.c, gcc.dg/tree-ssa/ssa-dom-cse-1.c,
+ gcc.dg/tree-ssa/ssa-dom-thread-1.c, gcc.dg/tree-ssa/ssa-pre-1.c,
+ gcc.dg/tree-ssa/ssa-pre-2.c, gcc.dg/tree-ssa/ssa-pre-3.c,
+ gcc.dg/tree-ssa/ssa-pre-4.c, gcc.dg/tree-ssa/ssa-pre-5.c,
+ gcc.dg/tree-ssa/ssa-pre-6.c, gcc.dg/tree-ssa/ssa-sink-1.c,
+ gcc.dg/tree-ssa/ssa-sink-2.c, gcc.dg/tree-ssa/ssa-sink-3.c,
+ gcc.dg/tree-ssa/ssa-sink-4.c, gcc.dg/tree-ssa/tailcall-1.c,
+ gcc.dg/tree-ssa/tailcall-2.c, gcc.dg/tree-ssa/tailrecursion-1.c,
+ gcc.dg/tree-ssa/tailrecursion-2.c, gcc.dg/tree-ssa/tailrecursion-3.c,
+ gcc.dg/tree-ssa/tailrecursion-4.c, gcc.dg/tree-ssa/tailrecursion-5.c,
+ gcc.dg/tree-ssa/useless-1.c: Ditto.
+ gcc.dg/vect/pr16105.c, gcc.dg/vect/pr18308.c, gcc.dg/vect/pr18400.c,
+ gcc.dg/vect/pr18425.c, gcc.dg/vect/pr18536.c, gcc.dg/vect/vect-1.c,
+ gcc.dg/vect/vect-10.c, gcc.dg/vect/vect-11.c, gcc.dg/vect/vect-12.c,
+ gcc.dg/vect/vect-13.c, gcc.dg/vect/vect-14.c, gcc.dg/vect/vect-15.c,
+ gcc.dg/vect/vect-16.c, gcc.dg/vect/vect-17.c, gcc.dg/vect/vect-18.c,
+ gcc.dg/vect/vect-19.c, gcc.dg/vect/vect-2.c, gcc.dg/vect/vect-20.c,
+ gcc.dg/vect/vect-21.c, gcc.dg/vect/vect-22.c, gcc.dg/vect/vect-23.c,
+ gcc.dg/vect/vect-24.c, gcc.dg/vect/vect-25.c, gcc.dg/vect/vect-26.c,
+ gcc.dg/vect/vect-27.c, gcc.dg/vect/vect-28.c, gcc.dg/vect/vect-29.c,
+ gcc.dg/vect/vect-3.c, gcc.dg/vect/vect-30.c, gcc.dg/vect/vect-31.c,
+ gcc.dg/vect/vect-32.c, gcc.dg/vect/vect-33.c, gcc.dg/vect/vect-34.c,
+ gcc.dg/vect/vect-35.c, gcc.dg/vect/vect-36.c, gcc.dg/vect/vect-37.c,
+ gcc.dg/vect/vect-38.c, gcc.dg/vect/vect-4.c, gcc.dg/vect/vect-40.c,
+ gcc.dg/vect/vect-41.c, gcc.dg/vect/vect-42.c, gcc.dg/vect/vect-43.c,
+ gcc.dg/vect/vect-44.c, gcc.dg/vect/vect-45.c, gcc.dg/vect/vect-46.c,
+ gcc.dg/vect/vect-47.c, gcc.dg/vect/vect-48.c, gcc.dg/vect/vect-49.c,
+ gcc.dg/vect/vect-5.c, gcc.dg/vect/vect-50.c, gcc.dg/vect/vect-51.c,
+ gcc.dg/vect/vect-52.c, gcc.dg/vect/vect-53.c, gcc.dg/vect/vect-54.c,
+ gcc.dg/vect/vect-55.c, gcc.dg/vect/vect-56.c, gcc.dg/vect/vect-57.c,
+ gcc.dg/vect/vect-58.c, gcc.dg/vect/vect-59.c, gcc.dg/vect/vect-6.c,
+ gcc.dg/vect/vect-60.c, gcc.dg/vect/vect-61.c, gcc.dg/vect/vect-62.c,
+ gcc.dg/vect/vect-63.c, gcc.dg/vect/vect-64.c, gcc.dg/vect/vect-65.c,
+ gcc.dg/vect/vect-66.c, gcc.dg/vect/vect-67.c, gcc.dg/vect/vect-68.c,
+ gcc.dg/vect/vect-69.c, gcc.dg/vect/vect-7.c, gcc.dg/vect/vect-70.c,
+ gcc.dg/vect/vect-71.c, gcc.dg/vect/vect-72.c, gcc.dg/vect/vect-73.c,
+ gcc.dg/vect/vect-74.c, gcc.dg/vect/vect-75.c, gcc.dg/vect/vect-76.c,
+ gcc.dg/vect/vect-77.c, gcc.dg/vect/vect-78.c, gcc.dg/vect/vect-79.c,
+ gcc.dg/vect/vect-8.c, gcc.dg/vect/vect-80.c, gcc.dg/vect/vect-82.c,
+ gcc.dg/vect/vect-82_64.c, gcc.dg/vect/vect-83.c,
+ gcc.dg/vect/vect-83_64.c, gcc.dg/vect/vect-85.c,
+ gcc.dg/vect/vect-86.c, gcc.dg/vect/vect-87.c, gcc.dg/vect/vect-88.c,
+ gcc.dg/vect/vect-89.c, gcc.dg/vect/vect-9.c, gcc.dg/vect/vect-96.c,
+ gcc.dg/vect/vect-97.c, gcc.dg/vect/vect-98.c, gcc.dg/vect/vect-all.c,
+ gcc.dg/vect/vect-none.c: Ditto.
+ * treelang/compile/extrafunc.tree, treelang/compile/extravar.tree,
+ treelang/compile/unsigned.tree: Ditto.
+
+ * gcc.dg/altivec-16.c: Use cleanup-saved-temps.
+ * gcc.dg/cpp/direct2s.c: Ditto.
+ * gcc.dg/cpp/paste4.c: Ditto.
+ * gcc.dg/cpp/separate-1.c: Ditto.
+ * gcc.dg/pch/save-temps-1.c: Ditto.
+ * g++.dg/ext/altivec-10.C: Ditto.
+ * g++.dg/pch/pch.C: Ditto.
+
+ * g++.dg/other/static11.C: Use cleanup-rtl-dump.
+
+ * g++.dg/parse/repo1.C: Use cleanup-repo-files.
+ * g++.dg/template/repo1.C: Ditto.
+ * g++.dg/template/repo2.C: Ditto.
+ * g++.dg/template/repo3.C: Ditto.
+ * g++.old-deja/g++.pt/instantiate4.C: Ditto.
+ * g++.old-deja/g++.pt/instantiate6.C: Ditto.
+ * g++.old-deja/g++.pt/repo1.C: Ditto.
+ * g++.old-deja/g++.pt/repo2.C: Ditto.
+ * g++.old-deja/g++.pt/repo3.C: Ditto.
+ * g++.old-deja/g++.pt/repo4.C: Ditto.
+
+ * gcc.dg/20020201-1.c: Use cleanup-coverage_files.
+ * gcc.dg/20030107-1.c: Ditto.
+ * gcc.dg/20030702-1.c: Ditto.
+ * gcc.dg/profile-generate-1.c: Ditto.
+ * g++.dg/other/profile1.C: Ditto.
+ * g++.old-deja/g++.robertl/eb83.C: Ditto.
+
+ * lib/gcc-dg.exp (remove-build-file): New.
+ (cleanup-coverage-files, cleanup-repo-files, cleanup-rtl-dump,
+ cleanup-tree-dump, cleanup-saved-temps): New.
+
+2005-03-31 Nathan Sidwell <nathan@codesourcery.com>
+
+ PR c++/19203, DR 214
+ * g++.dg/parse/ambig3.C: Not ambiguous.
+ * g++.dg/template/spec20.C: New.
+ * g++.dg/template/spec21.C: New.
+
+2005-03-31 Steve Ellcey <sje@cup.hp.com>
+
+ PR target/20045
+ * gcc.dg/ia64-fptr-1.c: Run only on linux.
+
+2005-03-31 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
+ PR libfortran/20660
+ * gfortran.dg/negative_unit.f: New test.
+
+2005-03-31 Mostafa Hagog <mustafa@il.ibm.com>
+
+ * gcc.dg/20050330-1.c: New test.
+
2005-03-30 Devang Patel <dpatel@apple.com>
* g++.dg/tree-sra/ssa-sra-3.C: New test.
--- /Users/regress/tbox/changelog_mail/gcc/libiberty/ChangeLog Tue Mar 29 07:46:15 2005
+++ gcc/libiberty/ChangeLog Thu Mar 31 15:54:08 2005
@@ -1,3 +1,8 @@
+2005-03-31 Joseph S. Myers <joseph@codesourcery.com>
+
+ * gettimeofday.c: Add "Supplemental" to @deftypefn.
+ * functions.texi: Regenerate.
+
2005-03-28 Ian Lance Taylor <ian@airs.com>
* pex-common.c: New file.
--- /Users/regress/tbox/changelog_mail/gcc/libjava/ChangeLog Tue Mar 29 21:52:38 2005
+++ gcc/libjava/ChangeLog Thu Mar 31 15:54:09 2005
@@ -1,3 +1,7 @@
+2005-03-31 Thomas Fitzsimmons <fitzsim@redhat.com>
+
+ * javax/swing/text/JTextComponent.java (viewToModel): New method.
+
2005-03-29 Ian Lance Taylor <ian@airs.com>
* external/sax/Makefile.am (GCJ_WITH_FLAGS): Add "-fclasspath=".
ChangeLog entries between 2005-03-31T09:55:19Z and the last time everything
passed, on 2005-03-03T14:15:02Z:
--- /Users/regress/tbox/changelog_pass/gcc/ChangeLog Wed Mar 2 01:31:07 2005
+++ gcc/ChangeLog Thu Mar 31 01:56:29 2005
@@ -1,3 +1,66 @@
+2005-03-30 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * MAINTAINERS: Move John Carr to Write After Approval.
+
+2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
+
+ * config/mh-mingw32: Delete.
+ * configure.in: Don't use it.
+ * configure: Regenerate.
+
+2005-03-31 Paolo Bonzini <bonzini@gnu.org>
+
+ * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
+ * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
+ (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
+ (HOST_LIB_PATH): Generate from Makefile.def.
+ (TARGET_LIB_PATH): Likewise.
+ (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
+ * Makefile.in: Regenerate.
+ * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
+ (RPATH_ENVVAR): Include Darwin case.
+ * configure: Regenerate.
+
+2005-03-29 Thomas Fitzsimmons <fitzsim@redhat.com>
+
+ * MAINTAINERS (Various Maintainers): Remove self.
+ (Write After Approval): Add self.
+
+2005-03-26 Thomas Fitzsimmons <fitzsim@redhat.com>
+
+ * MAINTAINERS (Various Maintainers): Add self.
+
+2005-03-25 Paolo Bonzini <bonzini@gnu.org>
+
+ * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
+ * configure: Regenerate.
+
+2005-03-21 Zack Weinberg <zack@codesourcery.com>
+
+ * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
+ gcc_version, and gcc_version_trigger from set of flags to pass.
+ * Makefile.tpl: Remove definitions of above variables.
+ (config.status): Remove dependency on $(gcc_version_trigger).
+ * Makefile.in: Regenerate.
+ * configure.in: Do not reference config/gcc-version.m4 nor
+ config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
+ TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
+ * configure: Regenerate.
+
+2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
+ Andrew Pinski <pinskia@physics.uc.edu>
+
+ * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
+ * Makefile.in: Regenerate.
+
+2005-03-13 Feng Wang <fengwang@nudt.edu.cn>
+
+ * MAINTAINERS (Write After Approval): Add myself.
+
+2005-03-03 David Ayers <d.ayers@inode.at>
+
+ * MAINTAINERS (Write After Approval): Add myself.
+
2005-03-01 Alexandre Oliva <aoliva@redhat.com>
PR libgcj/20160
--- /Users/regress/tbox/changelog_pass/gcc/gcc/ChangeLog Thu Mar 3 06:16:38 2005
+++ gcc/gcc/ChangeLog Thu Mar 31 01:56:32 2005
@@ -1,3 +1,3424 @@
+2005-03-31 Mostafa Hagog <mustafa@il.ibm.com>
+
+ * testsuite/gcc.dg/20050330-1.c: New test.
+
+2005-03-31 Kazu Hirata <kazu@cs.umass.edu>
+
+ * config.gcc: Obsolete i860-*-sysv4*, ip2k-*-elf,
+ ns32k-*-netbsdelf*, and ns32k-*-netbsd*.
+
+2005-03-29 Devang Patel <dpatel@apple.com>
+
+ * tree-sra.c (decide_block_copy): Disable scalarization of
+ sub-elements.
+
+2005-03-30 Stuart Hastings <stuart@apple.com>
+ Dale Johannesen <dalej@apple.com>
+
+ * Makefile.in (print-tree.o): Depend on tree-iterator.h.
+ * print-tree.c (print_node): Add case STATEMENT_LIST.
+
+2005-03-31 Alan Modra <amodra@bigpond.net.au>
+
+ * config.gcc (cpu_is_64bit): Set for 64-bit powerpc cpus.
+ (powerpc64-*-linux*): Use it. Rearrange tm_file assignment.
+ (powerpc-*-linux*): Build a biarch compiler when --enable-targets
+ is given with "powerpc64*" or "all", or when --with-cpu chooses
+ a 64-bit cpu.
+
+2005-03-30 James E. Wilson <wilson@specifixinc.com>
+
+ PR debug/20268
+ * dwarf2out.c (add_high_low_attributes): New function, extracted from
+ gen_lexical_block_die.
+ (gen_lexical_block_die, gen_inlined_subroutine_die): Call it.
+
+2005-03-31 Jan Hubicka <jh@suse.cz>
+
+ 2004-11-02 Jan Hubicka <jh@suse.cz>
+
+ * cgraph.c (cgraph_varpool_node_name): New function.
+ (dump_cgraph_varpool_node): New function.
+ (dump_varpool): New function.
+ * cgraphunit.c (cgraph_optimize): Dump varpool.
+
+ 2004-10-16 Jan Hubicka <jh@suse.cz>
+
+ * cgraph.c (decide_is_variable_needed): New function.
+ (cgraph_varpool_finalize_decl): Use it.
+ * cgraphunit.c (cgraph_optimize): Assemble_pending_decls when not doing
+ unit-at-a-time.
+ * final.c (output_addr_const): Do not call mark_referenced.
+ * passes.c (rest_of_decl_compilation): ifdef out DECL_RTL_SET_P hack;
+ always go via cgraph.
+ * toplev.c (wrapup_global_declarations): Kill non-unit-at-a-time code.
+ (check_global_declarations): Ifdef out code clearing DECL_RTL.
+ * tree-optimize.c (execute_inline): Mark functions called.
+ * i386.c (output_pic_addr_const): Do not call mark_decl_referenced.
+
+ 2004-10-11 Jan Hubicka <jh@suse.cz>
+
+ * cgraph.c (cgraph_varpool_first_unanalyzed_node): New global voriable
+ (cgraph_varpool_last_needed_node): New static variable.
+ (enqueue_needed_varpool_node): Break out from ...; add items to the
+ end of queue; update first pointers.
+ (cgraph_varpool_mark_needed_node): ... here.
+ (cgraph_varpool_finalize_decl): Use enqueue_needed_varpool_node.
+ (cgraph_varpool_assemble_pending_decls): Move to cgraphunit.c
+ * cgraph.h (cgraph_varpool_node): Add analyzed field.
+ (cgraph_varpool_first_unanalyzed_node): Declare.
+ * cgraphunit.c: Include output.h.
+ (cgraph_varpool_analyze_pending_decls): New function.
+ (cgraph_varpool_assemble_pending_decls): Move from cgraph.c; bail out
+ for errors, analyze pending decls.
+ (cgraph_finalize_compilation_unit): Only analyze decls.
+ (cgraph_optimize): Assemble the decls after expanding.
+
+2005-03-30 Daniel Berlin <dberlin@dberlin.org>
+
+ * tree-ssa-alias.c (compute_flow_insensitive_aliasing): Make sure
+ subvars get marked properly in tags for grouping.
+ (add_pointed_to_var): Mark only actual pointed to
+ variables/subvars in addresses needed.
+ (create_overlap_variables_for): Clear call clobbered on original
+ variable.
+ * tree-ssa-operands.c (get_asm_expr_operands): Don't let regular
+ addresable vars with subvars into list.
+ * tree-ssa.c (verify_ssa_name): Verify original is not used where
+ subvar should be.
+
+2005-03-30 Richard Henderson <rth@redhat.com>
+
+ * cgraph.h (struct cgraph_node): Add alias.
+ * varasm.c (assemble_alias): Set it.
+ * cgraphunit.c (cgraph_assemble_pending_functions): Check it and
+ avoid calling cgraph_expand_function.
+
+2005-03-30 Tom Tromey <tromey@redhat.com>
+
+ * tree.def (FILE_TYPE): Removed.
+ * typeclass.h (enum type_class): Removed file_type_class.
+ * dwarf2out.c (is_base_type): Updated.
+ (gen_type_die): Likewise.
+ * dbxout.c (dbxout_type): Updated.
+ * builtins.c (type_to_class): Updated.
+ * tree.c (type_contains_placeholder_1): Updated.
+ * config/sparc/sparc.c (sparc_type_code): Updated.
+ * config/ia64/ia64.c (hfa_element_mode): Updated.
+ * expr.c (count_type_elements): Updated.
+ * stor-layout.c (layout_type): Updated.
+ * tree-inline.c (remap_type): Updated.
+ * tree-pretty-print.c (dump_generic_node): Updated.
+
+2005-03-30 Fariborz Jahanian <fjahanian@apple.com>
+
+ * builtins.c (expand_builtin_powi): Fix mode of
+ 2nd argument to match int.
+ * libgcc2.h (__powisf2, __powidf2, __powixf2, __powitf2): Change
+ 2nd argument type to int.
+ * libgcc2.c: Change prototype of __powi* functions to use
+ int.
+
+2005-03-30 Dale Johannesen <dalej@apple.com>
+
+ PR middle-end/19225
+ * calls.c (expand_call): Flush pending deferrals before
+ throwing call.
+
+2005-03-30 Joseph S. Myers <joseph@codesourcery.com>
+
+ PR c/772
+ PR c/17913
+ * c-tree.h (C_DECL_UNJUMPABLE_STMT_EXPR,
+ C_DECL_UNDEFINABLE_STMT_EXPR, struct c_label_list, struct
+ c_label_context, label_context_stack): New.
+ * c-decl.c (define_label): Check for jumps into statement
+ expressions. Add label to list of defined labels.
+ (start_function): Push context on label_context_stack.
+ (finish_function): Pop context from label_context_stack.
+ * c-typeck.c (label_context_stack): New.
+ (c_finish_goto_label): Check for jumps into statement
+ expressions. Add label to list of jumped to labels.
+ (struct c_switch): Add blocked_stmt_expr.
+ (c_start_case): Initialize it.
+ (do_case): Check it.
+ (c_finish_case): Verify !blocked_stmt_expr.
+ (c_begin_stmt_expr): Push context on label_context_stack.
+ Increment blocked_stmt_expr. Mark labels jumped to from outside
+ as undefinable.
+ (c_finish_stmt_expr): December blocked_stmt_expr. Mark labels
+ defined in the statement expression and no longer jumpable to.
+ Mark labels jumped to from just outside the statement expression
+ as again definable. Pop context from label_context_stack.
+ * doc/extend.texi (Statement Exprs): Update.
+
+2005-03-30 Joseph S. Myers <joseph@codesourcery.com>
+
+ PR c/20368
+ * c-decl.c (start_function): Check for old_decl being
+ error_mark_node.
+
+2005-03-30 Ian Lance Taylor <ian@airs.com>
+
+ * final.c (final): Remove prescan parameter. Change all callers.
+ (final_scan_insn): Remove prescan parameter. Change all callers.
+
+2005-03-30 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-vectorizer.c: Fix comment typos.
+
+2005-03-30 Sebastian Pop <pop@cri.ensmp.fr>
+
+ * tree-scalar-evolution.c (instantiate_parameters_1): Return
+ as soon as a chrec_dont_know is detected.
+
+2005-03-31 Danny Smith <dannysmith@users.sourceforge.net>
+
+ Merge from csl-arm-branch.
+ 2004-02-12 Mark Mitchell <mark@codesourcery.com>
+
+ * tlink.c (recompile_files): Do not assume that "rename" can
+ overwrite an existing file.
+
+2005-03-31 Paolo Bonzini <bonzini@gnu.org>
+
+ * gcc/configure.ac (TL_AC_GNU_MAKE_GCC_LIB_PATH): Remove.
+ * gcc/configure: Regenerate.
+
+2005-03-30 Alan Modra <amodra@bigpond.net.au>
+
+ * doc/install.texi: Update binutils requirement for powerpc*-linux.
+
+ * config/rs6000/rs6000.c (rs6000_arg_partial_bytes): Update comments.
+
+ * calls.c (struct arg_data): Update "partial" comment.
+ (load_register_parameters): Update "nregs" comment.
+
+2005-03-30 Richard Sandiford <rsandifo@redhat.com>
+
+ * config/iq2000/iq2000.h (target_flags, MASK_GPOPT, MASK_EMBEDDED_DATA)
+ (MASK_UNINIT_CONST_IN_RODATA, TARGET_EMBEDDED_DATA, TARGET_SWITCHES)
+ (TARGET_DEFAULT, TARGET_CPU_DEFAULT, SUBTARGET_TARGET_OPTIONS)
+ (TARGET_OPTIONS, iq2000_cpu_string, iq2000_arch_string): Delete.
+ (TARGET_DEBUG_MODE, TARGET_DEBUG_A_MODE, TARGET_DEBUG_B_MODE)
+ (TARGET_DEBUG_C_MODE, TARGET_DEBUG_D_MODE): Define to 0 rather
+ than target_flags & 0.
+ * config/iq2000/iq2000.c (iq2000_cpu_string, iq2000_arch_string)
+ (iq2000_arch, iq2000_parse_cpu): Delete.
+ (TARGET_HANDLE_OPTION): Override default.
+ (iq2000_handle_option): New function.
+ (override_options): Remove -march= and -mcpu= handling.
+ * config/iq2000/iq2000.opt: New file.
+
+2005-03-30 Richard Sandiford <rsandifo@redhat.com>
+
+ * config/c4x/c4x-protos.h (c4x_rpts_cycles, c4x_cpu_version): Delete.
+ * config/c4x/c4x.h (SMALL_MEMORY_FLAG, MPYI_FLAG, FAST_FIX_FLAG)
+ (RPTS_FLAG, C3X_FLAG, TI_FLAG, PARANOID_FLAG, MEMPARM_FLAG, DEVEL_FLAG)
+ (RPTB_FLAG, BK_FLAG, DB_FLAG, DEBUG_FLAG, HOIST_FLAG)
+ (LOOP_UNSIGNED_FLAG, FORCE_FLAG, PRESERVE_FLOAT_FLAG)
+ (PARALLEL_INSN_FLAG, PARALLEL_MPY_FLAG, ALIASES_FLAG, C30_FLAG)
+ (C31_FLAG, C32_FLAG, C33_FLAG, C40_FLAG, C44_FLAG, TARGET_SWITCHES)
+ (TARGET_DEFAULT, TARGET_SMALL, TARGET_MPYI, TARGET_FAST_FIX)
+ (TARGET_RPTS, TARGET_TI, TARGET_PARANOID, TARGET_MEMPARM, TARGET_DEVEL)
+ (TARGET_RPTB, TARGET_BK, TARGET_DB, TARGET_DEBUG, TARGET_HOIST)
+ (TARGET_LOOP_UNSIGNED, TARGET_FORCE, TARGET_PRESERVE_FLOAT)
+ (TARGET_PARALLEL, TARGET_PARALLEL_MPY, TARGET_ALIASES)
+ (c4x_rpts_cycles_string, c4x_cpu_version_string)
+ (TARGET_OPTIONS): Delete.
+ (c4x_rpts_cycles, c4x_cpu_version): Declare.
+ (TARGET_C3X, TARGET_C30, TARGET_C31, TARGET_C32, TARGET_C33)
+ (TARGET_C40, TARGET_C44): Redefine in terms of c4x_cpu_version.
+ * config/c4x/c4x.c (c4x_rpts_cycles_string): Delete.
+ (c4x_cpu_version_string): Delete.
+ (TARGET_DEFAULT_TARGET_FLAGS, TARGET_HANDLE_OPTION): Override defaults.
+ (c4x_handle_option): New function. Map -m3x and -m4x options to the
+ equivalent -mcpu= option.
+ (c4x_override_options): Remove -mrpts= and -mcpu= handling from here.
+ Deal with the extra conditions in the old TARGET_MPYI, TARGET_RPTB,
+ TARGET_DB, TARGET_PARALLEL and TARGET_PARALLEL_MPY macros by setting
+ or clearing the appropriate MASK_* bit.
+ (c4x_file_start): Use c4x_cpu_version.
+ * config/c4x/c4x.opt: New file.
+
+2005-03-30 Richard Sandiford <rsandifo@redhat.com>
+
+ * doc/options.texi: Document the new MaskExists flag.
+ * opth-gen.awk: Don't output MASK and TARGET macros for Mask(...)
+ if the option has the MaskExists flag.
+
+2005-03-30 Richard Sandiford <rsandifo@redhat.com>
+
+ * opt-functions.awk (flag_set_p, test_flag): New functions.
+ (switch_flags): Use them.
+ * opth-gen.awk: Use flag_set_p to check for flags.
+ * optc-gen.awk: Likewise. Use opt_args to check for Init(...) flags.
+
+2005-03-30 Ian Lance Taylor <ian@airs.com>
+
+ * config.host (i[34567]86-*-mingw32*): Don't set
+ host_can_use_collect2 to no.
+
+2005-03-30 Alan Modra <amodra@bigpond.net.au>
+
+ PR target/20203
+ * builtins.c (get_memory_rtx): Expand address exp using EXPAND_NORMAL.
+ Remove convert_memory_address call duplicating that in memory_address.
+
+2005-03-29 Richard Henderson <rth@redhat.com>
+
+ PR c/20519
+ * c-decl.c (c_finish_incomplete_decl): Update complete_array_type call.
+ (build_compound_literal): Likewise. Propagate decl type into the
+ initializer.
+ (finish_decl): Likewise. Use new return value from complete_array_type
+ for zero sized arrays.
+ (complete_array_type): Move ...
+ * c-common.c (complete_array_type): ... here. Change first argument
+ to pointer-to-type-node. Consistently use sizetype for the index
+ except for zero sized arrays. Detect zero sized arrays for pedantic
+ mode diagnostics. Create a new type node instead of modifying the
+ old node in place.
+ * c-tree.h (complete_array_type): Move decl ...
+ * c-common.h (complete_array_type): ... here.
+
+2005-03-29 Richard Henderson <rth@redhat.com>
+
+ PR tree-opt/19108
+ * tree-sra.c (generate_element_init_1): Handle RANGE_EXPR.
+
+2005-03-29 Kazu Hirata <kazu@cs.umass.edu>
+
+ * builtin-types.def, c-convert.c, c-format.c, ddg.c, debug.c,
+ debug.h, et-forest.c, et-forest.h, gcov.c, rtl-profile.c,
+ rtlhooks-def.h, rtlhooks.c, sdbout.c, tree-inline.h,
+ tree-profile.c, tsystem.h, value-prof.h: Update copyright.
+
+2005-03-29 Eric Christopher <echristo@redhat.com>
+
+ * config/mips/mips.c (mips_gimplify_va_arg_expr): Update for
+ truthvalue conversion removal.
+
+2005-03-29 Ian Lance Taylor <ian@airs.com>
+
+ PR bootstrap/14316
+ * collect2.c: Never include <vfork.h>.
+ (VFORK_STRING, vfork): Don't define.
+ (pid): Remove global variable.
+ (handler): Call raise instead of kill (getpid(), ...).
+ (collect_wait): Add pex parameter. Change all callers. Use
+ pex_get_status rather than pwait.
+ (do_wait): Add pex parameter. Change all callers.
+ (collect_execute): Return struct pex_obj * rather than void. Use
+ pex routines rather than pexecute.
+ (fork_execute): Get pex_obj from collect_execute, and pass it to
+ do_wait.
+ (scan_prog_file): Use pex routines rather than pipe/vfork/exec.
+ Only declare quit_handler if SIGQUIT is defined.
+ (scan_libraries): Likewise.
+ * collect2.h (collect_execute): Update declaration.
+ (collect_wait): Update declaration.
+ * tlink.c (tlink_execute): Get pex_obj from collect_execute, and
+ pass it to collect_wait.
+
+2005-03-29 Joseph S. Myers <joseph@codesourcery.com>
+
+ PR c/20672
+ * c-parser.c (c_parser_compound_statement_nostart): Give error
+ message for EOF instead of just setting parser->error.
+
+2005-03-29 Dorit Naishlos <dorit@il.ibm.com>
+
+ * tree-vectorizer.c (slpeel_update_phi_nodes_for_guard): Removed.
+ (slpeel_update_phi_nodes_for_guard1): New function.
+ (slpeel_update_phi_nodes_for_guard2): New function.
+ (slpeel_tree_peel_loop_to_edge): Call above new functions instead
+ of slpeel_update_phi_nodes_for_guard.
+ (vectorize_loops): Remove call to loop_closed_rewrite.
+ * tree-vect-transform.c (vect_update_ivs_after_vectorizer): Remove
+ assertion.
+
+2005-03-29 Richard Sandiford <rsandifo@redhat.com>
+
+ * config/m32r/little.h (TARGET_ENDIAN_DEFAULT): Delete.
+ (TARGET_LITTLE_ENDIAN): New macro.
+ * config/m32r/m32r.h (SUBTARGET_SWITCHES, target_flags)
+ (TARGET_RELAX_MASK, TARGET_DEBUG_MASK, TARGET_DEBUG)
+ (TARGET_ALIGN_LOOPS_MASK, TARGET_ALIGN_LOOPS)
+ (TARGET_LOW_ISSUE_RATE_MASK, TARGET_LOW_ISSUE_RATE)
+ (TARGET_BRANCH_COST_MASK, TARGET_BRANCH_COST, TARGET_M32RX_MASK)
+ (TARGET_M32RX, TARGET_M32R2_MASK, TARGET_M32R2, LITTLE_ENDIAN_BIT)
+ (TARGET_ENDIAN_DEFAULT, SUBTARGET_SWITCHES, TARGET_DEFAULT)
+ (TARGET_SWITCHES, m32r_model_string, m32r_sdata_string)
+ (m32r_cache_flush_trap_string, SUBTARGET_OPTIONS)
+ (TARGET_OPTIONS): Delete.
+ (M32R_MODEL_DEFAULT, M32R_SDATA_DEFAULT): Turn into enums.
+ (CACHE_FLUSH_TRAP): Turn into an integer.
+ (TARGET_LITTLE_ENDIAN): Define to 0 by default.
+ (INITIALIZE_TRAMPOLINE): Check m32r_cache_trap >= 0 to see if
+ -mflush-trap is in use.
+ * config/m32r/m32r.c (m32r_model_string, m32r_sdata_string)
+ (m32r_cache_flush_trap_string): Delete.
+ (m32r_model) Initialize to M32R_MODEL_DEFAULT.
+ (m32r_sdata): Likewise M32R_SDATA_DEFAULT.
+ (m32r_cache_trap): Likewise CACHE_FLUSH_TRAP.
+ (TARGET_DEFAULT_TARGET_FLAGS, TARGET_HANDLE_OPTION): Override defaults.
+ (m32r_handle_option): New function. Move -mflush-trap=, -mflush-func=,
+ -mmodel= and -msdata= handling from...
+ (m32r_init): ...here.
+ * config/m32r/m32r.opt: New file.
+
+2005-03-29 Keith Besaw <kbesaw@us.ibm.com>
+
+ * tree-ssanames.c (duplicate_ssa_name_ptr_info): New function.
+ (duplicate_ssa_name): Call duplicate_ssa_name_ptr_info.
+ * tree-vect-analyze.c (vect_object_analysis): additional parm
+ pass back a "struct ptr_info_def *" with the points-to info.
+ (vect_analyze_data_refs): set the STMT_VINFO_PTR_INFO for the
+ statement using info returned from vect_object_analysis.
+ * tree-vect-transform.c (update_vuses_to_preheader): New function.
+ (vect_create_data_ref_ptr): Remove updates to vars_to_rename
+ for virtual uses and defs when creating a replacement vector
+ reference. Call duplicate_ssa_name_ptr_info to define points-to
+ info for vector pointer replacement using STMT_VINFO_PTR_INFO.
+ (vectorizable_store): copy_virtual_operands and update
+ definition statements.
+ (vectorizable_load): copy_virtual_operands. Remove call to
+ mark_call_clobbered_vars_to_rename for call to "const" builtin.
+ * tree-vectorizer.c (vectorize_loops): Remove calls to
+ rewrite_into_ssa and bitmap_clear (vars_to_rename).
+ (new_stmt_vec_info): initialize STMT_VINFO_PTR_INFO for stmt.
+ * tree-vectorizer.h (_stmt_vec_info): add field ptr_info and
+ define macro STMT_VINFO_PTR_INFO for use in accessing.
+ * tree.h add export of duplicate_ssa_name_ptr_info.
+ * rs6000.c (altivec_init_builtins): Declare builtin function
+ __builtin_altivec_mask_for_load to be "const".
+
+2005-03-29 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/20622
+ * cgraph.h (struct cgraph_varpool_node): Add alias field.
+ * cgraph.c (cgraph_varpool_assemble_pending_decls): Don't call
+ assemble_variable on aliases.
+ * varasm.c (assemble_alias): Set node->alias.
+ * toplev.c (wrapup_global_declarations): Don't call
+ rest_of_decl_compilation on aliases again.
+
+2005-03-29 Paul Brook <paul@codesourcery.com>
+
+ * config/arm/arm-protos.h (arm_dbx_register_number): Add prototype.
+ * config/arm/arm.c (arm_dbx_register_number): New function.
+ * config/arm/arm.h (IS_FPA_REGNUM, DBX_REGISTER_NUMBER): Define.
+
+2005-03-29 Eric Botcazou <ebotcazou@libertysurf.fr>
**** TRUNCATED ****
-------------- next part --------------
--
Geoffrey Keating <geoffk@apple.com>
(via an automated GCC regression-testing script.)
More information about the Gcc-regression
mailing list