1. 30 Jun, 2010 3 commits
    • class.c (type_has_virtual_destructor): New. · 46408846
      	* class.c (type_has_virtual_destructor): New.
      	* cp-tree.h: Declare it.
      	* semantics.c (trait_expr_value): Use it.
      
      	* call.c (build_over_call): Only give warnings with tf_warning.
      
      	* name-lookup.c (pop_scope): Handle NULL_TREE.
      
      From-SVN: r161578
      Jason Merrill committed
    • cp-tree.h (TYPE_HAS_ASSIGN_REF): Rename to TYPE_HAS_COPY_ASSIGN. · 066ec0a4
      	* cp-tree.h (TYPE_HAS_ASSIGN_REF): Rename to TYPE_HAS_COPY_ASSIGN.
      	(TYPE_HAS_CONST_ASSIGN_REF): Rename to TYPE_HAS_CONST_COPY_ASSIGN.
      	(TYPE_HAS_INIT_REF): Rename to TYPE_HAS_COPY_CTOR.
      	(TYPE_HAS_CONST_INIT_REF): Rename to TYPE_HAS_CONST_COPY_CTOR.
      	(TYPE_HAS_COMPLEX_ASSIGN_REF): Rename to TYPE_HAS_COMPLEX_COPY_ASSIGN.
      	(TYPE_HAS_COMPLEX_INIT_REF): Rename to TYPE_HAS_COMPLEX_COPY_CTOR.
      	(TYPE_HAS_TRIVIAL_ASSIGN_REF): Rename to TYPE_HAS_TRIVIAL_COPY_ASSIGN.
      	(TYPE_HAS_TRIVIAL_INIT_REF): Rename to TYPE_HAS_TRIVIAL_COPY_CTOR.
      	(CLASSTYPE_LAZY_ASSIGNMENT_OP): Rename to CLASSTYPE_LAZY_COPY_ASSIGN.
      	(sfk_assignment_operator): Rename to sfk_copy_assignment.
      	* decl.c, call.c, class.c, init.c, method.c, pt.c, ptree.c: Adjust.
      	* search.c, semantics.c, tree.c: Adjust.
      
      From-SVN: r161577
      Jason Merrill committed
    • Daily bump. · 99453ddd
      From-SVN: r161574
      GCC Administrator committed
  2. 29 Jun, 2010 33 commits
    • recog.c (peep2_do_rebuild_jump_labels, [...]): New static variables. · ee932b8f
      	* recog.c (peep2_do_rebuild_jump_labels, peep2_do_cleanup_cfg): New
      	static variables.
      	(peep2_buf_position): New static function.
      	(peep2_regno_dead_p, peep2_reg_dead_p, peep2_find_free_register,
      	peephole2_optimize): Use it.
      	(peep2_attempt, peep2_update_life): New static functions, broken out
      	of peephole2_optimize.
      	(peep2_fill_buffer): New static function.
      	(peephole2_optimize): Change the main loop to try to fill the buffer
      	with the maximum number of insns before matching them against
      	peepholes.  Use a forward scan.  Remove special case for targets with
      	conditional execution.
      	* genrecog.c (change_state): Delete dead code.
      	* config/i386/i386.md (peephole2 for arithmetic ops with memory):
      	Rewrite so as not to expect the second insn to have had a peephole
      	applied yet.
      
      From-SVN: r161570
      Bernd Schmidt committed
    • re PR fortran/44718 (Procedure-pointer name is wrongly regarded as "external procedure") · 68d8db77
      2010-06-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/44718
      	* resolve.c (is_external_proc): Prevent procedure pointers from being
      	regarded as external procedures.
      
      2010-06-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/44718
      	* gfortran.dg/proc_ptr_28.f90: New.
      
      From-SVN: r161569
      Janus Weil committed
    • genhooks.c (emit_findices): Cast field precision to int. · 4d64faec
      	* genhooks.c (emit_findices): Cast field precision to int.
      	(emit_documentation): Likewise.
      
      From-SVN: r161568
      Nathan Froyd committed
    • re PR tree-optimization/43801 (error: function causes a section type conflict… · 087fa34b
      re PR tree-optimization/43801 (error: function causes a section type conflict with -fipa-cp -fipa-cp-clone)
      
      	PR tree-optimization/43801
      	* cgraph.c (cgraph_create_virtual_clone): Clear DECL_SECTION_NAME
      	if old_decl was DECL_ONE_ONLY.
      
      	* g++.dg/torture/pr43801.C: New test.
      
      From-SVN: r161564
      Jakub Jelinek committed
    • re PR debug/44668 (class->DW_TAG_typedef is missing DW_AT_accessibility) · 0287000a
      	PR debug/44668
      	* dwarf2out.c (add_accessibility_attribute): New function.
      	(gen_subprogram_die, gen_variable_die, gen_field_die): Use it
      	instead of adding DW_AT_accessibility manually.
      	(gen_enumeration_type_die, gen_struct_or_union_type_die,
      	gen_typedef_die): Use it.
      
      	* g++.dg/debug/dwarf2/accessibility1.C: New test.
      
      From-SVN: r161563
      Jakub Jelinek committed
    • pt.c (dependent_scope_ref_p): Remove. · 2d660b7f
      	* pt.c (dependent_scope_ref_p): Remove.
      	(value_dependent_expression_p): Don't call it.
      	(type_dependent_expression_p): Here either.
      	* init.c (build_offset_ref): Set TREE_TYPE on a qualified-id
      	if the scope isn't dependent.
      
      	* pt.c (convert_nontype_argument): Use mark_lvalue_use if we want
      	a reference.
      
      From-SVN: r161560
      Jason Merrill committed
    • re PR c++/44587 (ICE in instantiate_decl) · d3a79fcc
      	PR c++/44587
      	* pt.c (has_value_dependent_address): New.
      	(value_dependent_expression_p): Check it.
      	(convert_nontype_argument): Likewise.  Call decay_conversion before
      	folding if we want a pointer.
      	* semantics.c (finish_id_expression): Don't add SCOPE_REF if the
      	scope is the current instantiation.
      
      From-SVN: r161559
      Jason Merrill committed
    • m68k.c (targetm.sched.init_global): Update comment. · 7ecb00a6
              * config/m68k/m68k.c (targetm.sched.init_global): Update comment.
              (targetm.sched.init): Likewise.
      
      From-SVN: r161558
      Joern Rennecke committed
    • vmsdbgout.c (full_name): Just output the file name if not native. · 6a07b007
      	* vmsdbgout.c (full_name): Just output the file name if not native.
      
      From-SVN: r161557
      Douglas B Rupp committed
    • vmsdbgout.c (func_table): Replace with VEC func{nam,num}_tables. · 6ca45368
      	* vmsdbgout.c (func_table): Replace with VEC func{nam,num}_tables.
      	(funcnam_table): New static table.
      	(funcnum_table): New static table.
      	(write_rtnbeg): Write value saved in funcnum_table.
      	(write_rtnend): Write value saved in funcnum_table.
      	(vmsdbgout_begin_function): Save current function info in
      	(vmsdbgout_init): Initialize func{nam,num}_tables. Minor reformatting.
      	(vmsdbgout_finish): Iterate over funcnum_table.
      
      From-SVN: r161556
      Douglas B Rupp committed
    • * Makefile.in (s-tm-texi): Remove stray tab / rule. · e82a40fc
      From-SVN: r161555
      Joern Rennecke committed
    • re PR fortran/44696 ([OOP] ASSOCIATED fails on polymorphic variables) · 0e3b941e
      2010-06-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/44696
      	* trans-intrinsic.c (gfc_conv_associated): Handle polymorphic variables
      	passed as second argument of ASSOCIATED.
      
      2010-06-29  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/44696
      	* gfortran.dg/associated_target_4.f90: New.
      
      From-SVN: r161554
      Janus Weil committed
    • vmsdbgout.c (vmsdbgout_begin_epilogue): Declare · 528b7aa4
      	* vmsdbgout.c (vmsdbgout_begin_epilogue): Declare
      	(vmsdbgout_type_decl): Declare
      	(vmsdbg_debug_hooks): Add entry for type_decl and begin_epilogue.
      	(FUNC_EPILOGUE_LABEL): New macro
      	(vmsdbgout_begin_epilogue): New function.
      	(vmsdbgout_type_decl): New function.
      
      From-SVN: r161553
      Douglas B Rupp committed
    • Committed as obvious. · cb488ce1
      	* vmsdbg.h: Update copyright.
      
      From-SVN: r161552
      Douglas B Rupp committed
    • re PR fortran/44582 (gfortran generates wrong results due to wrong ABI in… · 42488c1b
      re PR fortran/44582 (gfortran generates wrong results due to wrong ABI in function with array return)
      
      2010-06-29  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/44582
      	* trans-expr.c (arrayfunc_assign_needs_temporary): New function
      	to determine if a function assignment can be made without a
      	temporary.
      	(gfc_trans_arrayfunc_assign): Move all the conditions that
      	suppress the direct function call to the above new functon and
      	call it.
      
      2010-06-29  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/44582
      	* gfortran.dg/aliasing_array_result_1.f90 : New test.
      
      From-SVN: r161550
      Paul Thomas committed
    • vmsdbg.h (DST_K_TBG): New DST constant. · b313b165
      	* vmsdbg.h (DST_K_TBG): New DST constant.
      	* vmsdbgout.c (addr_const_to_string): Removed, not referenced.
      	(write_modbeg): Cast module_language to avoid warning.
      	(write_rtnbeg): Use DST_K_TBG vice magic mystery number.
      	Minor reformatting.
      
      From-SVN: r161549
      Douglas B Rupp committed
    • re PR other/44034 (target hooks are hard to maintain) · 38f8b050
      gcc:
      	PR other/44034
      	* target.def, doc/tm.texi.in, genhooks.c: New files.
      	* target.h: Instead of defining individual hook members,
      	define DEFHOOKPOD / DEFHOOK / DEFHOOK_UNDOC / HOOKSTRUCT and
      	include target.def.
      	* target-def.h: Instead of defining individual hook initializers,
      	include target-hooks-def.h.
      	* df-scan.c, haifa-sched.c, sel-sched.c: Rename targetm members:
      	targetm.live_on_entry -> targetm.extra_live_on_entry
      	targetm.sched.md_finish ->targetm.sched.finish
      	targetm.sched.md_init -> targetm.sched.init
      	targetm.sched.md_init_global -> targetm.sched.init_global
      	targetm.asm_out.unwind_label -> targetm.asm_out.emit_unwind_label
      	targetm.asm_out.except_table_label ->
      	  targetm.asm_out.emit_except_table_label
      	targetm.asm_out.visibility -> targetm.asm_out.assemble_visibility
      	targetm.target_help -> targetm.help
      	targetm.vectorize.builtin_support_vector_misalignment ->
      	  targetm.vectorize.support_vector_misalignment
      	targetm.file_start_app_off -> targetm.asm_file_start_app_off
      	targetm.file_start_file_directive ->
      	 targetm.asm_file_start_file_directive
      	* dwarf2out.c, opts.c, tree-vect-data-refs.c, except.c: Likewise.
      	* varasm.c, config/alpha/alpha.c, config/cris/cris.c: Likewise.
      	* gcc/config/spu/spu.c, config/ia64/ia64.c: Rename target macros:
      	TARGET_VECTOR_ALIGNMENT_REACHABLE ->
      	  TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE
      	TARGET_SUPPORT_VECTOR_MISALIGNMENT ->
      	  TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT
      	TARGET_UNWIND_EMIT -> TARGET_ASM_UNWIND_EMIT
      	* config/rs6000/rs6000.c, config/arm/arm.c: Likewise.
      	* Makefile.in (TARGET_H): Depend on target.def.
      	(TARGET_DEF_H): Depend on target-hooks-def.h.
      	(target-hooks-def.h, tm.texi, s-target-hooks-def-h): New rules.
      	(s-tm-texi, build/genhooks.o, build/genhooks): Likewise.
      	* doc/tm.texi: Regenerate.
      gcc/c-family:
      	* c-common.c: Rename targetm member:
      	targetm.enum_va_list -> targetm.enum_va_list_p
      gcc/po:
      	* EXCLUDES: Add genhooks.c.
      Index: gcc/doc/tm.texi
      
      From-SVN: r161547
      Joern Rennecke committed
    • re PR bootstrap/44713 (Revision 161530 failed bootstrap) · 3fc7cd18
      	PR bootstrap/44713
      	* config/i386/i386.c (type_natural_mode): Const-ify CUM parameter.
      	(function_arg_advance_32): Const-ify TYPE parameter.
      	(function_arg_advance_64): Likewise.  Change type of NAMED to bool.
      	(ix86_function_arg_advance): Change type of NAMED to bool.
      	(function_arg_32): Const-ify CUM and TYPE parameters.
      	(function_arg_64): Likewise.  Change type of NAMED to bool.
      	(function_arg_ms_64): Const-ify CUM parameter. Change type of NAMED
      	to bool.
      	(ix86_function_arg): Change type of NAMED to bool.
      	(ix86_setup_incoming_varargs): Call ix86_function_arg_advance.  Pass
      	last argument as a bool.
      
      From-SVN: r161540
      Nathan Froyd committed
    • ChangeLog typo fix. · 9afcc09d
      From-SVN: r161539
      Joern Rennecke committed
    • tm.texi (TARGET_OPTION_OVERRIDE): Document. · 74f7912a
              * doc/tm.texi (TARGET_OPTION_OVERRIDE): Document.
              (OVERRIDE_OPTIONS): Add note of obsolescence.
              Replace references with references to TARGET_OPTION_OVERRIDE.
              (Except for C_COMMON_OVERRIDE_OPTIONS, which remains similar to
               the macro).
              * targhooks.c (default_target_option_override): New function.
              * targhooks.h (default_target_option_override): Declare.
              * target.h (struct gcc_target): Add override member to
              target_option emmber.
              * toplev.c (process_options): Replace OVERRIDE_OPTIONS use with
              targetm.target_option.override call.
              * target-def.h (TARGET_OPTION_OVERRIDE): Define.
              (TARGET_OPTION_HOOKS): Add TARGET_OPTION_OVERRIDE.
      
      From-SVN: r161538
      Joern Rennecke committed
    • predict.c (propagate_freq): Clear EXIT_BLOCK_PTR frequency if it is unreachable. · b35366ce
      	* predict.c (propagate_freq): Clear EXIT_BLOCK_PTR frequency if it is
      	unreachable.
      	(rebuild_frequencies): New function.
      	* predict.h (rebuild_frequencies): Declare.
      	* tree-inline.c (copy_cfg_body): Compute properly count & frequency of
      	entry block and edge reaching new_entry.
      	(tree_function_versioning): When doing partial cloning, rebuild frequencies
      	when done.
      	* passes.c (execute_function_todo): Use rebild_frequencies.
      
      From-SVN: r161536
      Jan Hubicka committed
    • tree-dfa.c (dump_variable): Remove noalias_state dumping. · 50b56694
      2010-06-29  Richard Guenther  <rguenther@suse.de>
      
      	* tree-dfa.c (dump_variable): Remove noalias_state dumping.
      	* tree-flow.h (enum noalias_state): Remove.
      	(struct var_ann_d): Remove noalias_state member.
      
      From-SVN: r161535
      Richard Guenther committed
    • Revert parts of the change for PR25130. · 3df41baf
      	* cse.c (exp_equiv_p): For MEMs, if for_gcse, only compare
      	MEM_ALIAS_SET.
      
      From-SVN: r161534
      Bernd Schmidt committed
    • re PR target/43902 (suboptimal MIPS widening multiply accumulate) · 810c4bf4
      	PR target/43902
      	* config/arm/arm.md (maddsidi4, umaddsidi4): New expanders.
      	(maddhisi4): Renamed from mulhisi3addsi.  Operands renumbered.
      	(maddhidi4): Likewise.
      
      testsuite/
      	PR target/43902
      	* gcc.target/arm/wmul-1.c: Test for smlabb instead of smulbb.
      	* gcc.target/arm/wmul-3.c: New test.
      	* gcc.target/arm/wmul-4.c: New test.
      
      From-SVN: r161533
      Bernd Schmidt committed
    • calls.c, [...]: Call targetm.calls.function_arg... · 3c07301f
      	* calls.c, dse.c, expr.c, function.c: Call targetm.calls.function_arg,
      	targetm.calls.function_incoming_arg, and
      	targetm.calls.function_arg_advance instead of FUNCTION_ARG,
      	FUNCTION_INCOMING_ARG, and FUNCTION_ARG_ADVANCE, respectively.
      	* target.h (struct gcc_target): Add function_arg_advance,
      	function_arg, and function_incoming_arg fields.
      	* target-def.h (TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG):
      	(TARGET_FUNCTION_INCOMING_ARG): Define.
      	(TARGET_CALLS): Add TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG,
      	and TARGET_FUNCTION_INCOMING_ARG.
      	* targhooks.h (default_function_arg_advance): Declare.
      	(default_function_arg, default_function_incoming_arg): Declare.
      	* targhooks.c (default_function_arg_advance): New function.
      	(default_function_arg, default_function_incoming_arg): New function.
      	* config/i386/i386.c (function_arg_advance): Rename to...
      	(ix86_function_arg_advance): ...this.  Make static.
      	(function_arg): Rename to...
      	(ix86_function_arg): ...this.  Make static.
      	(TARGET_FUNCTION_ARG_ADVANCE): Define.
      	(TARGET_FUNCTION_ARG): Define.
      	* config/i386/i386.h (FUNCTION_ARG_ADVANCE): Delete.
      	(FUNCTION_ARG): Delete.
      	* config/i386/i386-protos.h (function_arg_advance): Delete prototype.
      	(function_arg): Delete prototype.
      
      From-SVN: r161530
      Nathan Froyd committed
    • gigi.h (gnat_build_constructor): Take a VEC instead of a TREE_LIST. · 0e228dd9
      	* gcc-interface/gigi.h (gnat_build_constructor): Take a VEC instead
      	of a TREE_LIST.  Update comment.
      	* gcc-interface/trans.c (gigi): Build a VEC instead of a TREE_LIST.
      	Adjust call to gnat_build_constructor.
      	(Attribute_to_gnu): Likewise.
      	(gnat_to_gnu): Likewise.
      	(pos_to_constructor): Likewise.
      	(extract_values): Likewise.
      	* gcc-interface/utils.c (build_template): Likewise.
      	(convert_vms_descriptor64): Likewise.
      	(convert_vms_descriptor32): Likewise.
      	(convert_to_fat_pointer): Likewise.
      	(convert): Likewise.
      	(unchecked_convert): Likewise.
      	* gcc-interface/decl.c (gnat_to_gnu_entity): Likewise.
      	* gcc-interface/utils2.c (build_allocator): Likewise.
      	(fill_vms_descriptor): Likewise.
      	(gnat_build_constructor): Take a VEC instead of a TREE_LIST.
      	(compare_elmt_bitpos): Adjust for parameters being constructor_elts
      	instead of TREE_LISTs.
      
      From-SVN: r161529
      Nathan Froyd committed
    • reginfo.c (init_reg_sets_1): Adjust comments. · 079e7538
      	* reginfo.c (init_reg_sets_1): Adjust comments.
      	* combine-stack-adj.c (rest_of_handle_stack_adjustments): Likewise.
      	* calls.c (prepare_call_address): Likewise.
      	(emit_call_1): Use targetm.calls.return_pops_args.
      	(expand_call): Likewise.
      	* function.c (assign_parms): Likewise.
      	* system.h (RETURN_POPS_ARGS): Add to #pragma poison list.
      	* target.h (struct gcc_target) [struct calls]: Add
      	return_pops_args field.
      	* targhooks.h (default_return_pops_args): Declare.
      	* targhooks.c (default_return_pops_args): Define.
      	* target-def.h (TARGET_RETURN_POPS_ARGS): Define.
      	(TARGET_CALLS): Add TARGET_RETURN_POPS_ARGS.
      	* doc/tm.texi (RETURN_POPS_ARGS): Rename to...
      	(TARGET_RETURN_POPS_ARGS): ...this.  Use deftypefn.  Adjust
      	documentation.
      	* config/alpha/alpha.h (RETURN_POPS_ARGS): Delete.
      	* config/arc/arc.h (RETURN_POPS_ARGS): Likewise.
      	* config/arm/arm.h (RETURN_POPS_ARGS): Likewise.
      	* config/avr/avr.h (RETURN_POPS_ARGS): Likewise.
      	* config/bfin/bfin.h (RETURN_POPS_ARGS): Likewise.
      	* config/cris/cris.h (RETURN_POPS_ARGS): Likewise.
      	* config/crx/crx.h (RETURN_POPS_ARGS): Likewise.
      	* config/fr30/fr30.h (RETURN_POPS_ARGS): Likewise.
      	* config/frv/frv.h (RETURN_POPS_ARGS): Likewise.
      	* config/h8300/h8300.h (RETURN_POPS_ARGS): Likewise.
      	* config/ia64/ia64.h (RETURN_POPS_ARGS): Likewise.
      	* config/iq2000/iq2000.h (RETURN_POPS_ARGS): Likewise.
      	* config/lm32/lm32.h (RETURN_POPS_ARGS): Likewise.
      	* config/m32c/m32c.h (RETURN_POPS_ARGS): Likewise.
      	* config/m32r/m32r.h (RETURN_POPS_ARGS): Likewise.
      	* config/m68hc11/m68hc11.h (RETURN_POPS_ARGS): Likewise.
      	* config/mcore/mcore.h (RETURN_POPS_ARGS): Likewise.
      	* config/mep/mep.h (RETURN_POPS_ARGS): Likewise.
      	* config/mips/mips.h (RETURN_POPS_ARGS): Likewise.
      	* config/mmix/mmix.h (RETURN_POPS_ARGS): Likewise.
      	* config/mn10300/mn10300.h (RETURN_POPS_ARGS): Likewise.
      	* config/moxie/moxie.h (RETURN_POPS_ARGS): Likewise.
      	* config/pa/pa.h (RETURN_POPS_ARGS): Likewise.
      	* config/pdp11/pdp11.h (RETURN_POPS_ARGS): Likewise.
      	* config/picochip/picochip.h (RETURN_POPS_ARGS): Likewise.
      	* config/rs6000/rs6000.h (RETURN_POPS_ARGS): Likewise.
      	* config/rx/rx.h (RETURN_POPS_ARGS): Likewise.
      	* config/s390/s390.h (RETURN_POPS_ARGS): Likewise.
      	* config/score/score.h (RETURN_POPS_ARGS): Likewise.
      	* config/sh/sh.h (RETURN_POPS_ARGS): Likewise.
      	* config/sparc/sparc.h (RETURN_POPS_ARGS): Likewise.
      	* config/spu/spu.h (RETURN_POPS_ARGS): Likewise.
      	* config/stormy16/stormy16.h (RETURN_POPS_ARGS): Likewise.
      	* config/v850/v850.h (RETURN_POPS_ARGS): Likewise.
      	* config/xtensa/xtensa.h (RETURN_POPS_ARGS): Likewise.
      	* config/i386/i386-protos.h (ix86_return_pops_args): Delete.
      	* config/i386/i386.h (RETURN_POPS_ARGS): Delete.
      	* config/i386/i386.c (ix86_return_pops_args): Make static.
      	Constify arguments.
      	(TARGET_RETURN_POPS_ARGS): Define.
      	* config/m68k/m68k.h (RETURN_POPS_ARGS): Move to...
      	* config/m68k/m68k.c (m68k_return_pops_args): ...here.  New function.
      	(TARGET_RETURN_POPS_ARGS): Define.
      	* config/vax/vax.h (RETURN_POPS_ARGS): Move to...
      	* config/vax/vax.c (vax_return_pops_args): ...here.  New function.
      	(TARGET_RETURN_POPS_ARGS): Define.
      
      From-SVN: r161528
      Nathan Froyd committed
    • re PR tree-optimization/44667 (ICE: verify_stmts failed: non-trivial conversion… · ea184343
      re PR tree-optimization/44667 (ICE: verify_stmts failed: non-trivial conversion at assignment with -fprofile-generate)
      
      2010-06-29  Richard Guenther  <rguenther@suse.de>
      
      	PR middle-end/44667
      	* tree-inline.c (initialize_inlined_parameters): Make sure
      	to remap the inlined parameter variable substitutions types.
      
      From-SVN: r161527
      Richard Guenther committed
    • re PR libstdc++/44708 (Enabling -std=c++0x results in ambiguous function… · 6ff7e964
      re PR libstdc++/44708 (Enabling -std=c++0x results in ambiguous function overload in <ext/algorithm> header)
      
      2010-06-29  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR libstdc++/44708
      	* include/ext/algorithm (copy_n): Qualify __copy_n call with
      	__gnu_cxx::
      	* testsuite/ext/rope/44708.cc: New.
      
      From-SVN: r161524
      Paolo Carlini committed
    • re PR rtl-optimization/44659 (Combiner fails to match QI cmp patterns with upper 8bit register) · 5dfebe0a
      	PR rtl-optimization/44659
      	* combine.c (make_compound_operation) <SUBREG>: Do not return the
      	result of force_to_mode if it partially re-expanded the compound.
      
      From-SVN: r161523
      Eric Botcazou committed
    • Daily bump. · 4f036d9b
      From-SVN: r161521
      GCC Administrator committed
  3. 28 Jun, 2010 4 commits
    • re PR middle-end/44671 (Partial inlining breaks C++) · 6b5c2d6c
      	PR middle-end/44671
      	* ipa-split.c (test_nonssa_use, mark_nonssa_use): Check also uses of RESULT_DECL.
      
      From-SVN: r161514
      Jan Hubicka committed
    • re PR c++/44682 (warning: variable ‘x’ set but not used) · 7fd7263d
      	PR c++/44682
      	* class.c (build_base_path): If want_pointer, call mark_rvalue_use
      	on expr.
      
      	* g++.dg/warn/Wunused-var-14.C: New test.
      
      From-SVN: r161511
      Jakub Jelinek committed
    • re PR libfortran/43298 (fortran library does not read in NaN -Inf or Inf) · 83377c6a
      2010-06-28  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/43298
              * list_read.c (parse_real, read_real): Support NAN(alphanum).
      
      2010-06-28  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/43298
              * gfortran.dg/nan_6.f90: New.
      
      From-SVN: r161510
      Tobias Burnus committed
    • double-int.h (force_fit_type_double): Remove declaration. · 9589f23e
      	* double-int.h (force_fit_type_double): Remove declaration.
      	* double-int.c (force_fit_type_double): Move to tree.c.
      	* tree.h (force_fit_type_double): Declare.
      	* tree.h (force_fit_type_double): Moved from double-int.c. Use
      	double_int type for 'cst' argument. Use double_int_fits_to_tree_p and
      	double_int_to_tree instead of fit_double_type and build_int_cst_wide.
      	* convert.c (convert_to_pointer): Adjust call to
      	force_fit_type_double.
      	* tree-vrp.c (extract_range_from_assert,
      	extract_range_from_unary_expr): Adjust call to force_fit_type_double.
      	* fold-const.c: Update comment.
      	(int_const_binop, fold_convert_const_int_from_int,
      	fold_convert_const_int_from_real, fold_convert_const_int_from_fixed,
      	extract_muldiv_1, fold_div_compare, fold_sign_changed_comparison,
      	fold_unary_loc, fold_negate_const, fold_abs_const, fold_not_const,
      	round_up_loc): Adjust call to force_fit_type_double.
      	
      /c-family
      	* c-common.c (shorten_compare): Adjust call to force_fit_type_double.
      
      From-SVN: r161509
      Anatoly Sokolov committed