1. 03 Jan, 2006 6 commits
    • targhooks.h (default_decimal_float_supported_p): Declare. · 0884546e
      	* targhooks.h (default_decimal_float_supported_p): Declare.
      	* targhooks.c (default_decimal_float_supported_p): Define.
      	* target-def.h (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Redefine to
      	`default_decimal_float_supported_p'.
      	* doc/tm.texi (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Update.
      
      From-SVN: r109262
      Ben Elliston committed
    • combine.c (apply_distributive_law <SUBREG>): Check TRULY_NOOP_TRUNCATION. · f13f406e
      	* combine.c (apply_distributive_law <SUBREG>): Check
      	TRULY_NOOP_TRUNCATION.
      
      From-SVN: r109261
      Adam Nemet committed
    • Index: gcc/ChangeLog · 1146e682
      2006-01-02  Geoffrey Keating  <geoffk@apple.com>
      
      	* dwarf2out.c (have_switched_text_section): Delete.
      	(have_multiple_function_sections): New.
      	(have_location_lists): Make 'bool'.
      	(add_AT_loc_list): Use 'true' not '1'.
      	(dwarf2out_switch_text_section): Set have_multiple_function_sections.
      	(output_loc_list): Use have_multiple_function_sections.
      	(output_ranges): Likewise.
      	(dwarf2out_begin_function): Set have_multiple_function_sections if
      	necessary.
      	(dwarf2out_source_line): Don't fake separate_line_info_table_in_use.
      	Check function_section rather than DECL_SECTION_NAME.
      	(dwarf2out_finish): Use have_multiple_function_sections.
      	Don't clear have_location_lists.
      
      Index: gcc/testsuite/ChangeLog
      2006-01-02  Geoffrey Keating  <geoffk@apple.com>
      
      	* g++.dg/debug/debug9.C: New.
      
      From-SVN: r109260
      Geoffrey Keating committed
    • * zh_CN.po: Update. · 5ae500d2
      From-SVN: r109258
      Joseph Myers committed
    • libtool-ldflags: New script. · d79e6356
      	* libtool-ldflags: New script.
      
      	* src/Makefile.am (LTLDFLAGS): New variable. 
      	(CXXLINK): Use LTLDFLAGS.
      	* src/Makefile.in: Regenerated.
      	* libsupc++/Makefile.am (LTLDFLAGS): New variable. 
      	(CXXLINK): Use LTLDFLAGS.
      	* libsupc++/Makefile.in: Regenerated.
      
      From-SVN: r109256
      Mark Mitchell committed
    • Daily bump. · 0ac6ae9a
      From-SVN: r109253
      GCC Administrator committed
  2. 02 Jan, 2006 11 commits
  3. 01 Jan, 2006 10 commits
  4. 31 Dec, 2005 6 commits
  5. 30 Dec, 2005 6 commits
    • tree-outof-ssa.c (_elim_graph): Change the type of STACK to VEC(int,heap). · 1f452424
      	* tree-outof-ssa.c (_elim_graph): Change the type of STACK to
      	VEC(int,heap).
      	(new_elim_graph, delete_elim_graph, elim_forward,
      	eliminate_phi): Use the VEC API on STACK.
      
      From-SVN: r109182
      Kazu Hirata committed
    • tree.h (VALUE_HANDLE_VUSES): New. · c90186eb
      2005-12-29  Daniel Berlin  <dberlin@dberlin.org>
      
      	* tree.h (VALUE_HANDLE_VUSES): New.
      	(struct tree_value_handle): Add vuses.
      
      	* tree-vn.c (struct val_expr_pair_d): Remove stmt, add vuses.
      	(vn_compute): Remove stmt argument.
      	Don't use vuses in hash value computation.
      	(val_expr_pair_eq): Compare vuse lists.
      	(copy_vuses_from_stmt): New function.
      	(shared_vuses_from_stmt): Ditto.
      	(vn_add): Rewrite in terms of vn_add_with_vuses.
      	(vn_add_with_vuses): New function.
      	(vn_lookup): Rewrite in terms of vn_lookup_with_vuses.
      	(vn_lookup_with_vuses): New function.
      	(vuses_compare): New function.
      	(print_creation_to_file): Ditto.
      	(vn_lookup_or_add): Rewrite to handle vuses.
      	(sort_vuses): New function.
      	(vn_lookup_or_add_with_vuses): Ditto.
      	(vn_init): Initialize shared_lookup_vuses.
      	(vn_delete): Free shared_lookup_vuses.
      
      	* tree-ssa-pre.c: Update todo list.
      	(bb_value_sets_t): Add rvuse_in, rvuse_out, rvuse_gen, and
      	rvuse_kill.
      	(RVUSE_IN): New macro.
      	(RVUSE_GEN): Ditto.
      	(RVUSE_KILL): Ditto.
      	(RVUSE_OUT): Ditto.
      	(modify_expr_node_pool): New function.
      	(pretemp): New.
      	(storetemp): Ditto.
      	(mergephitemp): Ditto.
      	(prephitemp): Ditto.
      	(struct expr_pred_trans_d): Add vuses member.
      	(expr_pred_trans_eq): Compare vuses.
      	(phi_trans_lookup): Add vuses argument.
      	(phi_trans_add): Ditto.
      	(translate_vuses_through_block): New function.
      	(phi_translate): Use vuses to ask about those expressions that can
      	have vuses.
      	Properly translate virtual uses through phis, and use
      	vn_lookup_or_add_with vuses.  Handle tcc_reference.
      	(phi_translate_set): Don't add pointless translations to the
      	cache.
      	(get_representative): New function.
      	(vuses_dies_in_block_x): Ditto.
      	(valid_in_set): Add block argument.  Check virtual use validity.
      	(clean): Add block argument. Update call to valid_in_set
      	(compute_antic_aux): Update call to clean.
      	(dump_bitmap_of_names): New function.
      	(compute_vuse_representatives): Ditto.
      	(compute_rvuse): Ditto.
      	(can_value_number_call): Modified to accept calls with vuses.
      	(can_value_number_operation): New function.
      	(can_PRE_operation): Ditto.
      	(need_creation): New vector of stores that may need creation.
      	(find_or_generate_expression): use can_PRE_operation.
      	(create_expression_by_pieces): Handle INDIRECT_REF.
      	Only create one temp until we have to change types.
      	Mark new vars for renaming.
      	(insert_into_preds_of_block): Ignore loopiness of loads.
      	Use can_PRE_operation.
      	Only create one temp until we have to chnge types.
      	(insert_aux): Use can_PRE_operation.
      	Don't pass name to insert_into_preds_of_block.
      	(insert_extra_phis): Only use one temp until we have to change
      	types.
      	(poolify_tree): New function.
      	(modify_expr_template): New var.
      	(poolify_modify_expr): New function.
      	(insert_fake_stores): Ditto.
      	(realify_fake_stores): Ditto.
      	(compute_avail): Use can_value_number_operation.
      	(mark_operand_necessary): Return NULL for non-SSA names.
      	(remove_dead_inserted_code): Update comment.
      	(init_pre): Initialize pretemp, need_creation, storetemp,
      	mergephitemp, prephitemp.
      	Create modify_expr_node_pool.
      	(fini_pre): Free modify_expr_node_pool and need_creation array.
      	(execute_pre): Call insert_fake_stores, compute_rvuse, and
      	realify_fake_stores. 
      	* tree-flow.h (vn_compute): Fix prototype.
      	(vn_add): Ditto.
      	(vn_lookup): Ditto.
      	(sort_vuses): New.
      	(vn_lookup_or_add_with_vuses): Ditto.
      	(vn_add_with_vuses): Ditto.
      	(vn_lookup_with_vuses): Ditto.
      	* passes.c (pass_may_alias): Add.
      
      From-SVN: r109180
      Daniel Berlin committed
    • c-pretty-print.h (struct c_pretty_print_info): Add new member "constant". · a176426f
      2005-12-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
      
              * c-pretty-print.h (struct c_pretty_print_info): Add new
                member
              "constant".
              (pp_constant): New macro.
              * c-pretty-print.c (pp_c_pretty_printer_init): Set
                pp->constant.
      
      cp/
      2005-12-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
      
              * cxx-pretty-print.c (pp_cxx_constant): New.  Print
              string-literal in parens if input program says so.
              (pp_cxx_primary_expression): Hand off constant printing to
              pp_cxx_constant.
              (pp_cxx_pretty_printer_init): Set pp->c_base.constant.
              (pp_cxx_expression): Use pp_cxx_constant for literals.
              * error.c (dump_expr): Use pp_constant for literals.
      
      From-SVN: r109176
      Gabriel Dos Reis committed
    • re PR fortran/22607 (Elemental character functions don't work) · cf013e9f
      fortran/
      2005-12-30  Erik Edelmann  <eedelman@gcc.gnu.org>
      
              PR fortran/22607
              * trans-decl.c(gfc_get_extern_function_decl): Don't set
              DECL_IS_PURE (fndecl) = 1 for return-by-reference
              functions.
      
              fortran/PR 25396
              * interface.c (gfc_extend_expr): Initialize
              e->value.function.name to NULL.
      
      
      
      testsuite/
      2005-12-30  Erik Edelmann  <eedelman@gcc.gnu.org>
      
              PR fortran/22607
              * gfortran-dg/pure_byref_3.f90: New.
      
              fortran/PR 25396
              * gfortran.dg/userdef_operator_1.f90: New.
      
      From-SVN: r109171
      Erik Edelmann committed
    • re PR middle-end/25586 (FAIL: gfortran.dg/cray_pointers_2.f90 at -O2 and above) · ae21215e
      	PR fortran/25586
      	* pa.md: Remove REG_POINTER check from REG+REG peephole2 floating-point
      	store patterns.
      
      From-SVN: r109166
      John David Anglin committed
    • Daily bump. · 3bc77af7
      From-SVN: r109160
      GCC Administrator committed
  6. 29 Dec, 2005 1 commit
    • bitmap.c (bitmap_element_free, [...]): Added code to properly maintain the… · 1bc40c7e
      bitmap.c (bitmap_element_free, [...]): Added code to properly maintain the variants associated with the CURRENT and...
      
      2005-12-29 Kenneth Zadeck <zadeck@naturalbridge.com>
      
      	* bitmap.c (bitmap_element_free, bitmap_element_link,
      	bitmap_elt_insert_after, bitmap_and, bitmap_and_compl,
      	bitmap_and_compl, bitmap_ior, bitmap_ior_into, bitmap_xor,
      	bitmap_xor_into): Added code to properly maintain the variants
      	associated with the CURRENT and HEAD fields.
      	(bitmap_popcount, bitmap_clear_range, bitmap_compl_and_into): New
      	functions. * bitmap.h: Added defs for bitmap_popcount,
      	bitmap_clear_range, and bitmap_compl_and_into.
      
      From-SVN: r109153
      Kenneth Zadeck committed