ChangeLog entries since last run on 2001-12-31T20:44:43Z: --- /maat/heart/tbox/changelog_mail/gcc/gcc/ChangeLog Sun Dec 30 22:07:28 2001 +++ gcc/gcc/ChangeLog Mon Dec 31 15:37:26 2001 @@ -1,18 +1,35 @@ -2001-12-31 Graham Stott +2001-12-31 Richard Henderson - * halfpic.h: Remove foward defs of tree_node and rtx_def. + * regrename.c (build_def_use): Don't rename asm operands that + were originally hard registers. + (copyprop_hardreg_forward_1): Likewise. + (find_oldest_value_reg): Copy ORIGINAL_REGNO from source. + * varasm.c (make_decl_rtl): Use gen_rtx_raw_REG. Set ORIGINAL_REGNO. -2001-12-31 Graham Stott +2001-12-31 Douglas B Rupp - * toplev.h: Remove forward def of tree_node, rtx_def. + * config/alpha/vms.h (HAS_INIT_SECTION, NEED_ATEXIT): Remove. + (NAME__MAIN, SYMBOL__MAIN): Define. + +2001-12-31 Richard Henderson + + * cfgrtl.c (delete_insn): Check for not NOTE_INSN_DELETED_LABEL + before decrementing LABEL_NUSES from a jump table. + + * final.c (alter_subreg): Assign REGNO after changing the rtx code. + + * config/alpha/alpha.c (reg_no_subreg_operand): Reject all + non-registers. 2001-12-31 Graham Stott + * halfpic.h: Remove foward defs of tree_node and rtx_def. + + * toplev.h: Remove forward def of tree_node, rtx_def. + * except.h: Remove forward def of tree_node, rtx_def and define of tree, rtx. Also remove undefs. -2001-12-30 Graham Stott - * basic-block.h: Remove forward def of tree_node and define of tree. @@ -40,34 +57,22 @@ * c-lex.c: Include tree.h before expr.h -2001-12-31 Graham Stott - * c-typeck.c: Include rtl.h earlier. -2001-12-31 Graham Stott - * tree.h (STRIP_NOPS): Remove extraneous semicolon. (STRIP_SIGN_NOPS): Likewise. (STRIP_TYPE_NOPS): Likewise. (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): Add Parenthesis around macro paramater. -2001-12-31 Graham Stott - * final.c (struct bb_list): Delete. (struct bb_str): Likewise. -2001-12-31 Graham Stott - * cfgloop.c (flow_loop_entry_edges_find): Fix typo. (flow_loop_exit_edges_find): Likewise. -2001-12-31 Graham Stott - * gcse.c (gcse_main): Fix typos. (alloc_gcse_mem): Likewise. - -2001-12-31 Graham Stott * function.h: Remove undefs for rtx and tree. --- /maat/heart/tbox/changelog_mail/gcc/gcc/testsuite/ChangeLog Mon Dec 31 09:52:02 2001 +++ gcc/gcc/testsuite/ChangeLog Mon Dec 31 15:37:40 2001 @@ -1,3 +1,7 @@ +2001-12-31 Richard Henderson + + * gcc.dg/asm-5.c: New. + 2001-12-31 Paolo Carlini * g++.old-deja/g++.robertl/eb130.C: hash_set is now --- /maat/heart/tbox/changelog_mail/gcc/libiberty/ChangeLog Wed Dec 12 16:14:07 2001 +++ gcc/libiberty/ChangeLog Mon Dec 31 15:37:43 2001 @@ -1,3 +1,8 @@ +2001-12-31 Ira Ruben + + * aclocal.m4 (libiberty_AC_FUNC_STRNCMP): Use anon mmap as 2nd try. + * configure: Regenerated. + 2001-12-12 Craig Rodrigues PR other/2719 ChangeLog entries between 2001-12-31T20:44:43Z and the last time everything passed, on 2001-12-28T20:50:04Z: --- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog Fri Dec 28 12:50:23 2001 +++ gcc/gcc/ChangeLog Sun Dec 30 22:07:28 2001 @@ -1,3 +1,206 @@ +2001-12-31 Graham Stott + + * halfpic.h: Remove foward defs of tree_node and rtx_def. + +2001-12-31 Graham Stott + + * toplev.h: Remove forward def of tree_node, rtx_def. + +2001-12-31 Graham Stott + + * except.h: Remove forward def of tree_node, rtx_def and + define of tree, rtx. Also remove undefs. + +2001-12-30 Graham Stott + + * basic-block.h: Remove forward def of tree_node and + define of tree. + +2001-12-30 Richard Henderson + + * cfglayout.c (scope_def, scope_forest_info, forest, + relate_bbs_with_scopes, make_new_scope, build_scope_forest, + remove_scope_notes, insert_intra_before_1, insert_intra_1, + insert_intra_bb_scope_notes, insert_inter_bb_scope_notes, + rebuild_scope_notes, free_scope_forest_1, dump_scope_forest, + dump_scope_forest_1, get_next_bb_note, get_prev_bb_note): Remove. + (fixup_reorder_chain): Don't set scope for bb. + (insn_scopes, scope_to_insns_initialize, set_block_levels, + change_scope, scope_to_insns_finalize): New. + (cfg_layout_initialize, cfg_layout_finalize): Update to match. + * cfglayout.h (scope_def, scope): Remove. + (reorder_block_def): Remove scope member. + (scope_to_insns_initialize, scope_to_insns_finalize): Declare. + * haifa-sched.c: Revert reemit_other_notes change. + * sched-ebb.c (schedule_ebbs): Don't call remove_unnecessary_notes. + Use scope_to_insns_initialize and scope_to_insns_finalize. + * sched-rgn.c (schedule_insns): Likewise. + +2001-12-31 Graham Stott + + * c-lex.c: Include tree.h before expr.h + +2001-12-31 Graham Stott + + * c-typeck.c: Include rtl.h earlier. + +2001-12-31 Graham Stott + + * tree.h (STRIP_NOPS): Remove extraneous semicolon. + (STRIP_SIGN_NOPS): Likewise. + (STRIP_TYPE_NOPS): Likewise. + (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): Add Parenthesis around + macro paramater. + +2001-12-31 Graham Stott + + * final.c (struct bb_list): Delete. + (struct bb_str): Likewise. + +2001-12-31 Graham Stott + + * cfgloop.c (flow_loop_entry_edges_find): Fix typo. + (flow_loop_exit_edges_find): Likewise. + +2001-12-31 Graham Stott + + * gcse.c (gcse_main): Fix typos. + (alloc_gcse_mem): Likewise. + +2001-12-31 Graham Stott + + * function.h: Remove undefs for rtx and tree. + +2001-12-30 Richard Henderson + + * loop.c (check_dbra_loop): Fix last change: examine both + has_multiple_exit_targets and exit_count. + +2001-12-30 Richard Henderson + + * integrate.c (copy_rtx_and_substitute): Fix error last change: + we need to unconditionally create a new mem. + +2001-12-30 Hans-Peter Nilsson + + * config/mmix/mmix.md ("*call_real"): Fix typo in comment. + * config/mmix/mmix.h (EXTRA_CONSTRAINT): Pass MMIX_REG_OK_STRICT + to mmix_extra_constraint. + * config/mmix/mmix.c (mmix_secondary_reload_class): Only handle + non-global register classes. Mark now unused parameters as such. + (mmix_extra_constraint, 'U'): Use new parameter strict and call + calling memory_operand_p or strict_memory_address_p, not + address_operand. + * config/mmix/mmix-protos.h (mmix_extra_constraint): Add parameter. + +2001-12-30 Kaveh R. Ghazi + + * unroll.c: Move include files above first use of `const'. + +2001-12-30 Jakub Jelinek + + * cfgrtl.c (try_redirect_by_replacing_jump): Allow redirect_jump + to fail if target is EXIT_BLOCK_PTR, die otherwise. + (redirect_edge_and_branch): Likewise. + * cfgcleanup.c (try_forward_edge): Don't force jump redirecting + if target is EXIT_BLOCK_PTR. + +2001-12-29 David Edelsohn + + * gcc.c (init_gcc_spec): Do not link with static libgcc.a if + gcc invoked with -shared. + +2001-12-29 Graham Stott + + * config/i386/i386.c (ix86_asm_dialect): Fix enum type. + + (override_options): Delete abs macro unused. + + (output_pic_addr_const): Use ASM_ATT/ASM_INTEL enumerations + when testing ASSEMBLER_DIALECT. + + (print_reg): Likewise. + (print_operand): Likewise. + (print_operand_address): Likewise. + (print_operand): abort if ASSEMBLER_DIALECT is unknown dialect. + + * config/i386/i386.h (ix86_asm_dialect): Fix enum type. + + (FIND_BASE_TERM): Fix typo. + +Sat Dec 29 15:48:54 2001 Richard Kenner + + * expr.c (store_field): Use adjust_address, not PUT_MODE. + (expand_expr, case VIEW_CONVERT_EXPR): Likewise. + * reload1.c (eliminate_regs, case SUBREG): Likewise, but use + adjust_address_nv. + * varasm.c (make_decl_rtl): Likewise. + * integrate.c (copy_rtx_and_substitute, case MEM): Likewise, but use + replace_equiv_address_nv. + + * varasm.c (decode_addr_const, case INTEGER_CST): Call + output_constant_def instead of looking at TREE_CST_RTL. + + * expr.c (convert_move): If -fforce-mem, force FROM to not be memory. + + * stor-layout.c (layout_decl): Don't misalign field of variable size + for packed record. + + * dwarf2out.c (compute_section_prefix): Avoid cast warning. + (gen_decl_die): Only check DECL_IGNORED_P on decls. + (dwarf2out_decl): Check for DECL_IGNORED_P only when needed. + +2001-12-29 Jakub Jelinek + + * cfglayout.c (insert_intra_before_1): New. + (insert_inter_bb_scope_notes): Emit sibling block notes which don't + span multiple basic blocks. + +2001-12-29 Richard Henderson + + * loop.c (prescan_loop): Set has_multiple_exit_targets for exception + edges. Rearrange jump interpretation code to use pc_set. + (check_dbra_loop): Examine has_multiple_exit_targets not exit_count. + + * sched-deps.c (sched_analyze_insn): Set scheduling barrier for + all insns that can throw, not just if flag_non_call_exceptions. + +2001-12-29 Stan Shebs + + * objc/objc-act.c (STRING_OBJECT_CLASS_NAME): Remove. + (default_constant_string_class_name): New global. + (objc_init): Set it. + (synth_module_prologue): Use it. + + * objc/objc-act.c: Apply various cosmetic and formatting changes. + +2001-12-29 Kazu Hirata + + * config/rs6000/darwin-tramp.asm: Fix comment formatting. + * config/rs6000/freebsd.h: Likewise. + * config/rs6000/rs6000.c: Likewise. + * config/sh/sh.c: Likewise. + * config/sh/sh.h: Likewise. + +2001-12-28 Stan Shebs + + * objc/objc-act.c (build_module_descriptor): Make sure the init + function is not deferred. + (build_dispatch_table_initializer): Compute the method encoding if + not already done. + +2001-12-28 Kazu Hirata + + * doc/md.texi: Add @findex define_insn_and_split. + +2001-12-28 Hans Bohem + + * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR): New. + * config/ia64/unwind-ia64.c (uw_init_context_1): Redo sp, psp, + bsp setup. Set pri_unat_loc to something reasonable. + (uw_install_context): Add missing cast. + (unw_access_gr): Fix off-by-1 indexing error. + 2001-12-28 Kazu Hirata * except.c: Fix comment formatting. --- /maat/heart/tbox/changelog_pass/gcc/gcc/cp/ChangeLog Wed Dec 26 13:05:01 2001 +++ gcc/gcc/cp/ChangeLog Sat Dec 29 09:51:14 2001 @@ -1,7 +1,28 @@ +2001-12-29 Nathan Sidwell + + * call.c (build_user_type_conversion_1): Use my_friendly_assert + rather than if ... abort. + * cvt.c (convert_to_reference): Likewise. + * semantics.c (setup_vtbl_ptr): Likewise. + * pt.c (lookup_template_class): Comment typo. + +2001-12-29 Nathan Sidwell + + PR c++/5125 + * pt.c (push_template_decl_real): Make sure DECL has + DECL_LANG_SPECIFIC. + +2001-12-29 Nathan Sidwell + + PR c++/335 + * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer + for non-reference fields. + * typeck.c (require_complete_type): Use resolve_offset_ref). + 2001-12-26 Nathan Sidwell PR c++/196 - * cp/parse.y (bad_parm): Better diagnostic when given a SCOPE_REF. + * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF. 2001-12-24 Nathan Sidwell --- /maat/heart/tbox/changelog_pass/gcc/gcc/java/ChangeLog Wed Dec 26 19:45:47 2001 +++ gcc/gcc/java/ChangeLog Fri Dec 28 21:25:38 2001 @@ -1,3 +1,15 @@ +2001-12-28 Tom Tromey + + * gen-table.pl: Don't process characters after \uffff. Added + comment pointing to input file. + +2001-12-28 Kaveh R. Ghazi + + * gen-table.pl: Const-ify output. Document the location of a + suitable unicode input file. + + * chartables.h: Regenerate. + 2001-12-26 Kaveh R. Ghazi * chartables.h: Const-ify. --- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog Fri Dec 28 02:50:03 2001 +++ gcc/gcc/testsuite/ChangeLog Mon Dec 31 09:52:02 2001 @@ -1,3 +1,43 @@ +2001-12-31 Paolo Carlini + + * g++.old-deja/g++.robertl/eb130.C: hash_set is now + in namespace __gnu_cxx + +2001-12-30 Richard Henderson + + * gcc.dg/debug-6.c: New. + +2001-12-30 Jakub Jelinek + + * gcc.c-torture/compile/20011229-2.c: New test. + +2001-12-29 Jakub Jelinek + + * gcc.dg/debug-3.c: New test. + * gcc.dg/debug-4.c: New test. + * gcc.dg/debug-5.c: New test. + +2001-12-29 Richard Henderson + + * g++.dg/eh/loop1.C: New. + +2001-12-29 Nathan Sidwell + + * g++.dg/template/crash1.C: New test. + +2001-12-29 Nathan Sidwell + + * g++.dg/other/const1.C: New test. + +2001-12-29 Hans-Peter Nilsson + + * gcc.c-torture/compile/20011229-1.c: New test. + +2001-12-28 Stan Shebs + + * lib/objc-torture.exp: Resync with c-torture.exp. + * lib/objc.exp: Load standard libraries. + 2001-12-28 Jakub Jelinek * gcc.dg/gnu89-init-1.c: Adjust for the new behaviour, add some --- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog Fri Dec 28 12:50:31 2001 +++ gcc/libstdc++-v3/ChangeLog Mon Dec 31 12:45:01 2001 @@ -1,3 +1,79 @@ +2001-12-31 Paolo Carlini + + * include/ext/iterator: Add #include , tweak. + * testsuite/ext/headers.cc: Add . + +2001-12-31 Paolo Carlini + + * include/backward/algo.h: Add two more using declarations. + * include/backward/iterator.h: Include , + add using declaration. + * include/ext/algorithm: Add #pragma GCC system_header. + +2001-12-31 Phil Edwards + + * include/bits/stl_bvector.h: Change calls to 3-argument distance() + into standard 2-argument version. + * include/bits/stl_deque.h: Likewise. + * include/bits/stl_tempbuf.h: Likewise. + * include/bits/stl_tree.h: Likewise. + * include/bits/stl_vector.h: Likewise. + * include/ext/stl_hashtable.h: Likewise. + * include/bits/stl_iterator_base_funcs.h: Move distance() extension... + * include/ext/iterator: to here. New file. + * include/Makefile.am (ext_headers): Add new file, alphabatize. + * include/Makefile.in: Regenerate. + +2001-12-31 Phil Edwards + + * include/bits/stl_deque.h: Doxygenate with initial/example hooks. + Clean up spacing and indentation. + +2001-12-31 Paolo Carlini + + * include/ext/slist: Move into __gnu_cxx, + tweak, add using declarations. + +2001-12-31 Paolo Carlini + + * include/ext/hash_map: Move into __gnu_cxx, + tweak, add using declarations. + * include/ext/hash_set: Ditto. + * include/ext/ropeimpl.h: Ditto. + * include/ext/stl_hash_fun.h: Ditto. + * include/ext/stl_hashtable.h: Ditto. + * include/ext/stl_rope.h: Ditto. + * src/ext-inst.cc: Tweak. + * testsuite/ext/rope.cc: Tweak. + +2001-12-31 Paolo Carlini + + * include/backward/algo.h: Include , + tweak using declarations. + +2001-12-29 Richard Henderson + + * config/os/hpux/bits/os_defines.h: Don't define __glibcpp_long_bits. + * config/os/hpux/bits/cpu_limits.h: New file. + * configure.target (CPULIMITSH): Use it. + +2001-12-28 Richard Henderson + + * config/cpu/ia64/bits/cpu_limits.h: New file. + * config/os/osf/osf5.0/bits/cpu_limits.h: New file. + * configure.target (CPULIMITSH): Use them. + +2001-12-28 Phil Edwards + + * include/bits/c++config: Move doxygen hook comment... + * docs/doxygen/doxygroups.cc: ...to here. + +2001-12-28 Phil Edwards + + PR libstdc++/2054 + * include/bits/stl_algo.h (lower_bound): Relax concept checks. + * testsuite/ext/concept_checks.cc: New file. + 2001-12-28 Paolo Carlini * include/bits/stl_algo.h (count returning void,