1. 12 Sep, 2017 19 commits
    • Convert hard_regno_nregs to a function · ad474626
      This patch converts hard_regno_nregs into an inline function, which
      in turn allows hard_regno_nregs to be used as the name of a targetm
      field.  This is just a mechanical change.
      
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* regs.h (hard_regno_nregs): Turn into a function.
      	(end_hard_regno): Update accordingly.
      	* caller-save.c (setup_save_areas): Likewise.
      	(save_call_clobbered_regs): Likewise.
      	(replace_reg_with_saved_mem): Likewise.
      	(insert_restore): Likewise.
      	(insert_save): Likewise.
      	* combine.c (can_change_dest_mode): Likewise.
      	(move_deaths): Likewise.
      	(distribute_notes): Likewise.
      	* config/mips/mips.c (mips_hard_regno_call_part_clobbered): Likewise.
      	* config/powerpcspe/powerpcspe.c (rs6000_cannot_change_mode_class)
      	(rs6000_split_multireg_move): Likewise.
      	(rs6000_register_move_cost): Likewise.
      	(rs6000_memory_move_cost): Likewise.
      	* config/rs6000/rs6000.c (rs6000_cannot_change_mode_class): Likewise.
      	(rs6000_split_multireg_move): Likewise.
      	(rs6000_register_move_cost): Likewise.
      	(rs6000_memory_move_cost): Likewise.
      	* cselib.c (cselib_reset_table): Likewise.
      	(cselib_lookup_1): Likewise.
      	* emit-rtl.c (set_mode_and_regno): Likewise.
      	* function.c (aggregate_value_p): Likewise.
      	* ira-color.c (setup_profitable_hard_regs): Likewise.
      	(check_hard_reg_p): Likewise.
      	(calculate_saved_nregs): Likewise.
      	(assign_hard_reg): Likewise.
      	(improve_allocation): Likewise.
      	(calculate_spill_cost): Likewise.
      	* ira-emit.c (modify_move_list): Likewise.
      	* ira-int.h (ira_hard_reg_set_intersection_p): Likewise.
      	(ira_hard_reg_in_set_p): Likewise.
      	* ira.c (setup_reg_mode_hard_regset): Likewise.
      	(clarify_prohibited_class_mode_regs): Likewise.
      	(check_allocation): Likewise.
      	* lra-assigns.c (find_hard_regno_for_1): Likewise.
      	(lra_setup_reg_renumber): Likewise.
      	(setup_try_hard_regno_pseudos): Likewise.
      	(spill_for): Likewise.
      	(assign_hard_regno): Likewise.
      	(setup_live_pseudos_and_spill_after_risky_transforms): Likewise.
      	* lra-constraints.c (in_class_p): Likewise.
      	(lra_constraint_offset): Likewise.
      	(simplify_operand_subreg): Likewise.
      	(lra_constraints): Likewise.
      	(split_reg): Likewise.
      	(split_if_necessary): Likewise.
      	(invariant_p): Likewise.
      	(inherit_in_ebb): Likewise.
      	* lra-lives.c (process_bb_lives): Likewise.
      	* lra-remat.c (reg_overlap_for_remat_p): Likewise.
      	(get_hard_regs): Likewise.
      	(do_remat): Likewise.
      	* lra-spills.c (assign_spill_hard_regs): Likewise.
      	* mode-switching.c (create_pre_exit): Likewise.
      	* postreload.c (reload_combine_recognize_pattern): Likewise.
      	* recog.c (peep2_find_free_register): Likewise.
      	* regcprop.c (kill_value_regno): Likewise.
      	(set_value_regno): Likewise.
      	(copy_value): Likewise.
      	(maybe_mode_change): Likewise.
      	(find_oldest_value_reg): Likewise.
      	(copyprop_hardreg_forward_1): Likewise.
      	* regrename.c (check_new_reg_p): Likewise.
      	(regrename_do_replace): Likewise.
      	* reload.c (push_reload): Likewise.
      	(combine_reloads): Likewise.
      	(find_dummy_reload): Likewise.
      	(operands_match_p): Likewise.
      	(find_reloads): Likewise.
      	(find_equiv_reg): Likewise.
      	(reload_adjust_reg_for_mode): Likewise.
      	* reload1.c (count_pseudo): Likewise.
      	(count_spilled_pseudo): Likewise.
      	(find_reg): Likewise.
      	(clear_reload_reg_in_use): Likewise.
      	(free_for_value_p): Likewise.
      	(allocate_reload_reg): Likewise.
      	(choose_reload_regs): Likewise.
      	(reload_adjust_reg_for_temp): Likewise.
      	(emit_reload_insns): Likewise.
      	(delete_output_reload): Likewise.
      	* rtlanal.c (subreg_get_info): Likewise.
      	* sched-deps.c (sched_analyze_reg): Likewise.
      	* sel-sched.c (init_regs_for_mode): Likewise.
      	(mark_unavailable_hard_regs): Likewise.
      	(choose_best_reg_1): Likewise.
      	(verify_target_availability): Likewise.
      	* valtrack.c (dead_debug_insert_temp): Likewise.
      	* var-tracking.c (track_loc_p): Likewise.
      	(emit_note_insn_var_location): Likewise.
      	* varasm.c (make_decl_rtl): Likewise.
      	* reginfo.c (choose_hard_reg_mode): Likewise.
      	(init_reg_modes_target): Refer directly to
      	this_target_regs->x_hard_regno_nregs.
      
      From-SVN: r252014
      Richard Sandiford committed
    • Make more use of in_hard_reg_set_p · c1b52c0e
      An upcoming patch will convert hard_regno_nregs into an inline
      function, which in turn allows hard_regno_nregs to be used as the
      name of a targetm field.  This patch rewrites a use that can use
      in_hard_reg_set_p instead.
      
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* ira-costs.c (record_operand_costs): Use in_hard_reg_set_p
      	instead of hard_regno_nregs.
      
      From-SVN: r252013
      Richard Sandiford committed
    • Make more use of end_hard_regno · 4edd6298
      An upcoming patch will convert hard_regno_nregs into an inline
      function, which in turn allows hard_regno_nregs to be used as the
      name of a targetm field.  This patch rewrites uses that can use
      end_hard_regno instead.
      
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* config/aarch64/aarch64.c (aarch64_hard_regno_mode_ok): Use
      	end_hard_regno instead of hard_regno_nregs.
      	* config/s390/s390.c (s390_reg_clobbered_rtx): Likewise.
      	* config/sparc/sparc.h (ASM_DECLARE_REGISTER_GLOBAL): Likewise.
      	* config/visium/visium.c (visium_hard_regno_mode_ok): Likewise.
      	* ira-color.c (improve_allocation): Likewise.
      	* lra-assigns.c (find_hard_regno_for_1): Likewise.
      	* lra-lives.c (mark_regno_live): Likewise.
      	(mark_regno_dead): Likewise.
      	* lra-remat.c (operand_to_remat): Likewise.
      	* lra.c (collect_non_operand_hard_regs): Likewise.
      	* postreload.c (reload_combine_note_store): Likewise.
      	(move2add_valid_value_p): Likewise.
      	* reload.c (regno_clobbered_p): Likewise.
      
      From-SVN: r252012
      Richard Sandiford committed
    • Make more use of END_REGNO · 036620db
      An upcoming patch will convert hard_regno_nregs into an inline
      function, which in turn allows hard_regno_nregs to be used as the
      name of a targetm field.  This patch rewrites uses that are more
      easily (and efficiently) written as END_REGNO.
      
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* config/frv/frv.c (FOR_EACH_REGNO): Use END_REGNO instead of
      	hard_regno_nregs.
      	* config/v850/v850.c (v850_reorg): Likewise.
      	* reload.c (refers_to_regno_for_reload_p): Likewise.
      	(find_equiv_reg): Likewise.
      	* reload1.c (reload_reg_reaches_end_p): Likewise.
      
      From-SVN: r252011
      Richard Sandiford committed
    • Make more use of REG_NREGS · 462a99aa
      An upcoming patch will convert hard_regno_nregs into an inline
      function, which in turn allows hard_regno_nregs to be used as the
      name of a targetm field.  This patch rewrites uses that are more
      easily (and efficiently) written as REG_NREGS.
      
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* caller-save.c (add_used_regs): Use REG_NREGS instead of
      	hard_regno_nregs.
      	* config/aarch64/aarch64.c (aarch64_split_combinev16qi): Likewise.
      	* config/arm/arm.c (output_move_neon): Likewise.
      	(arm_attr_length_move_neon): Likewise.
      	(neon_split_vcombine): Likewise.
      	* config/c6x/c6x.c (c6x_mark_reg_read): Likewise.
      	(c6x_mark_reg_written): Likewise.
      	(c6x_dwarf_register_span): Likewise.
      	* config/i386/i386.c (ix86_save_reg): Likewise.
      	* config/ia64/ia64.c (mark_reg_gr_used_mask): Likewise.
      	(rws_access_reg): Likewise.
      	* config/s390/s390.c (s390_call_saved_register_used): Likewise.
      	* mode-switching.c (create_pre_exit): Likewise.
      	* ree.c (combine_reaching_defs): Likewise.
      	(add_removable_extension): Likewise.
      	* regcprop.c (find_oldest_value_reg): Likewise.
      	(copyprop_hardreg_forward_1): Likewise.
      	* reload.c (reload_inner_reg_of_subreg): Likewise.
      	(push_reload): Likewise.
      	(combine_reloads): Likewise.
      	(find_dummy_reload): Likewise.
      	(reload_adjust_reg_for_mode): Likewise.
      	* reload1.c (find_reload_regs): Likewise.
      	(forget_old_reloads_1): Likewise.
      	(reload_reg_free_for_value_p): Likewise.
      	(reload_adjust_reg_for_temp): Likewise.
      	(emit_reload_insns): Likewise.
      	(delete_output_reload): Likewise.
      	* sel-sched.c (choose_best_reg_1): Likewise.
      	(choose_best_pseudo_reg): Likewise.
      
      From-SVN: r252010
      Richard Sandiford committed
    • Turn SLOW_UNALIGNED_ACCESS into a target hook · e0bd6c9f
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      	    Alan Hayward  <alan.hayward@arm.com>
      	    David Sherwood <david.sherwood@arm.com>
      
      gcc/
      	* defaults.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* target.def (slow_unaligned_access): New hook.
      	* targhooks.h (default_slow_unaligned_access): Declare.
      	* targhooks.c (default_slow_unaligned_access): New function.
      	* doc/tm.texi.in (SLOW_UNALIGNED_ACCESS): Replace with...
      	(TARGET_SLOW_UNALIGNED_ACCESS): ...this.
      	* doc/tm.texi: Regenerate.
      	* config/alpha/alpha.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* config/arm/arm.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* config/i386/i386.h (SLOW_UNALIGNED_ACCESS): Delete commented-out
      	definition.
      	* config/powerpcspe/powerpcspe.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* config/powerpcspe/powerpcspe.c (TARGET_SLOW_UNALIGNED_ACCESS):
      	Redefine.
      	(rs6000_slow_unaligned_access): New function.
      	(rs6000_emit_move): Use it instead of SLOW_UNALIGNED_ACCESS.
      	(expand_block_compare): Likewise.
      	(expand_strn_compare): Likewise.
      	(rs6000_rtx_costs): Likewise.
      	* config/riscv/riscv.h (SLOW_UNALIGNED_ACCESS): Delete.
      	(riscv_slow_unaligned_access): Likewise.
      	* config/riscv/riscv.c (riscv_slow_unaligned_access): Rename to...
      	(riscv_slow_unaligned_access_p): ...this and make static.
      	(riscv_option_override): Update accordingly.
      	(riscv_slow_unaligned_access): New function.
      	(TARGET_SLOW_UNALIGNED_ACCESS): Redefine.
      	* config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* config/rs6000/rs6000.c (TARGET_SLOW_UNALIGNED_ACCESS): Redefine.
      	(rs6000_slow_unaligned_access): New function.
      	(rs6000_emit_move): Use it instead of SLOW_UNALIGNED_ACCESS.
      	(rs6000_rtx_costs): Likewise.
      	* config/rs6000/rs6000-string.c (expand_block_compare)
      	(expand_strn_compare): Use targetm.slow_unaligned_access instead
      	of SLOW_UNALIGNED_ACCESS.
      	* config/tilegx/tilegx.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* config/tilepro/tilepro.h (SLOW_UNALIGNED_ACCESS): Delete.
      	* calls.c (expand_call): Use targetm.slow_unaligned_access instead
      	of SLOW_UNALIGNED_ACCESS.
      	* expmed.c (simple_mem_bitfield_p): Likewise.
      	* expr.c (alignment_for_piecewise_move): Likewise.
      	(emit_group_load_1): Likewise.
      	(emit_group_store): Likewise.
      	(copy_blkmode_from_reg): Likewise.
      	(emit_push_insn): Likewise.
      	(expand_assignment): Likewise.
      	(store_field): Likewise.
      	(expand_expr_real_1): Likewise.
      	* gimple-fold.c (gimple_fold_builtin_memory_op): Likewise.
      	* lra-constraints.c (simplify_operand_subreg): Likewise.
      	* stor-layout.c (bit_field_mode_iterator::next_mode): Likewise.
      	* gimple-ssa-store-merging.c: Likewise in block comment at start
      	of file.
      	* tree-ssa-strlen.c: Include target.h.
      	(handle_builtin_memcmp): Use targetm.slow_unaligned_access instead
      	of SLOW_UNALIGNED_ACCESS.
      	* system.h (SLOW_UNALIGNED_ACCESS): Poison.
      
      Co-Authored-By: Alan Hayward <alan.hayward@arm.com>
      Co-Authored-By: David Sherwood <david.sherwood@arm.com>
      
      From-SVN: r252009
      Richard Sandiford committed
    • PR81285: Fix uninitialised variable in emit_store_flag_int · 41defab3
      2017-09-12  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	PR rtl-optimization/82185
      	* expmed.c (emit_store_flag_int): Only test tem if it has been
      	initialized.
      
      From-SVN: r252008
      Richard Sandiford committed
    • re PR middle-end/82149 (match.pd: 2919: bad if test ?) · c651dca2
      2017-09-12  Richard Biener  <rguenther@suse.de>
      
      	PR middle-end/82149
      	* match.pd ((FTYPE) N CMP CST): Fix typo.
      
      From-SVN: r252007
      Richard Biener committed
    • Add short_call function attribute for MIPS · 8101ec85
      gcc/
      	* config/mips/mips.c (mips_attribute_table): Add 'short_call'
      	attribute.
      	(mips_near_type_p): Add 'short_call' attribute as a synonym
      	for 'near'.
      	* doc/extend.texi (short_call): Document new function attribute.
      
      gcc/testsuite
      
      	* gcc.target/mips/near-far-1.c: Add check for 'short_call'
      	attribute.
      	* gcc.target/mips/near-far-2.c: Likewise.
      	* gcc.target/mips/near-far-3.c: Likewise.
      	* gcc.target/mips/near-far-4.c: Likewise.
      
      From-SVN: r252006
      Simon Atanasyan committed
    • Kill CLASSTYPE_SORTED_FIELDS. · 45e3a33d
      	* cp-tree.h (struct lang_type): Lose sorted_fields member.
      	(CLASSTYPE_SORTED_FIELDS): Delete.
      	* name-lookup.h (set_class_bindings): Add EXTRA arg.
      	* name-lookup.c (fields_linear_search): New, broken out of ...
      	(lookup_field_1): ... here.  Delete remainder of function.
      	(get_class_binding_direct): Reimplement without sorted_fields.
      	(get_class_binding): Rename TYPE arg to KLASS, for consistency.
      	(get_method_slot): Call set_class_binding when creating method_vec
      	on complete type.
      	(method_name_cmp): Order identically named slots.
      	(sorted_fields_type_new): Delete.
      	(field_vc_append_class_fields): Rename to ...
      	(method_vec_append_class_fields): ... here.  Adjust.
      	(field_vec_append_enum_values): Renme to ...
      	(method_vec_append_enum_values): ... here. Adjust.
      	(method_vec_dedup): New.
      	(set_class_bindings): Reimplement.
      	(insert_late_enum_def_bindings): Reimplement.
      
      From-SVN: r252005
      Nathan Sidwell committed
    • name-lookup.c (get_class_binding): Rename TYPE arg to KLASS for consistency. · 20614c86
      	* name-lookup.c (get_class_binding): Rename TYPE arg to KLASS for
      	consistency.
      	(restort_data): Move later.
      	(method_name_cmp, resort_method_name_cmp): Simplify.
      	(resort_type_method_vec): Reformat.
      
      From-SVN: r252004
      Nathan Sidwell committed
    • re PR target/82112 (internal compiler error: in fold_convert_loc, at fold-const.c:2262) · ec33aebb
      	PR target/82112
      	* c-common.c (sync_resolve_size): Instead of c_dialect_cxx ()
      	assertion check that in the condition.
      	(get_atomic_generic_size): Likewise.  Before testing if parameter
      	has pointer type, if it has array type, call for C++
      	default_conversion to perform array-to-pointer conversion.
      
      	* c-c++-common/pr82112.c: New test.
      	* gcc.dg/pr82112.c: New test.
      
      From-SVN: r252003
      Jakub Jelinek committed
    • tree-vect-generic.c (expand_vector_operations_1): Do nothing for operations we cannot scalarize. · dee6fc2b
      2017-09-12  Richard Biener  <rguenther@suse.de>
      
      	* tree-vect-generic.c (expand_vector_operations_1): Do nothing
      	for operations we cannot scalarize.
      
      From-SVN: r252002
      Richard Biener committed
    • [multiple changes] · b7051481
      2017-09-12  Bob Duff  <duff@adacore.com>
      
      	* sem_warn.adb: Minor comment.
      
      2017-09-12  Bob Duff  <duff@adacore.com>
      
      	* libgnat/a-cbdlli.adb, libgnat/a-cbhama.adb,
      	libgnat/a-cbmutr.adb, libgnat/a-cborma.adb: Rename New_Item to
      	be Default_Initialized_Item, and apply pragma Unmodified to it,
      	to suppress the warning.
      
      2017-09-12  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* exp_aggr.adb (Aggr_Assignment_OK_For_Backend): Add early return
      	for access types.
      
      2017-09-12  Yannick Moy  <moy@adacore.com>
      
      	* gnat1drv.adb (Adjust_Global_Switches): Consider Refined_Global
      	together with Global when ignoring one in CodePeer mode.
      
      2017-09-12  Javier Miranda  <miranda@adacore.com>
      
      	* sem_ch3.adb (Analyze_Declarations): In nested
      	package declarations that have a private part enable missing check
      	of the RM rule 13.1.1(11/3): usage names in aspect definitions are
      	resolved at the end of the immediately enclosing declaration list.
      
      From-SVN: r252001
      Arnaud Charlet committed
    • [multiple changes] · fb69239a
      2017-09-12  Bob Duff  <duff@adacore.com>
      
      	* sem_ch6.adb (Analyze_Expression_Function): Initialize Def_Id to
      	Empty.
      
      2017-09-12  Georges-Axel Jaloyan  <jaloyan@adacore.com>
      
      	* debug.adb: Reserving flag -gnatdF for safe pointer checking.
      	* gnat1drv.adb (gnat1drv): Adding the call to the analysis on
      	dF flag.
      	* sem_spark.adb, sem_spark.ads: Implementation of the analysis,
      	in preparation for the evolution of the SPARK language that
      	includes a pointer analysis for checking non-aliasing of access
      	types. The Check_Safe_Pointers function is the entry point, and
      	will traverse the AST and raise compile-time errors everytime
      	it detects non-begign aliasing.  Detailed comments are present
      	in the sem_spark.ads file.
      	* sem_util.adb, sem_util.ads (First_Global, Next_Global): New
      	functions to iterate over the list of globals of a subprogram.
      	* libgnat/system.ads: Add restriction No_Finalization.
      	* gcc-interface/Make-lang.in: Add new file sem_spark.adb and
      	dependency on g-dynhta.adb.
      
      From-SVN: r252000
      Arnaud Charlet committed
    • sem_ch6.adb (Analyze_Expression_Function): Call Check_Dynamically_Tagged_Expression. · 7f9fcce8
      2017-09-12  Bob Duff  <duff@adacore.com>
      
      	* sem_ch6.adb (Analyze_Expression_Function): Call
      	Check_Dynamically_Tagged_Expression.
      	* sem_util.adb (Check_Dynamically_Tagged_Expression): Remove
      	"and then Is_Tagged_Type (Typ)" because there is an earlier
      	"Assert (Is_Tagged_Type (Typ))".
      
      From-SVN: r251999
      Bob Duff committed
    • tree-ssa-threadbackward.c (fsm_find_thread_path): Make GC vectors heap vectors. · cff44c10
      	* tree-ssa-threadbackward.c (fsm_find_thread_path): Make GC
      	vectors heap vectors.  Clean up comments.
      	Make visited_bbs a reference.
      	(profitable_jump_thread_path): Make GC
      	vectors heap vectors.  Clean up comments.
      	Misc cleanups.
      	(convert_and_register_jump_thread_path): Make GC vectors heap
      	vectors.
      	(check_subpath_and_update_thread_path): Same.  Clean up comments.
      	Make visited_bbs a reference.
      	(handle_phi): Abstract common code to to
      	register_jump_thread_path_if_profitable.
      	Rename VAR_BB to DEF_BB.
      	Update comments.
      	Make GC vectors heap vectors.
      	Make visited_bbs a reference.
      	(handle_assignment): Same.
      	(register_jump_thread_path_if_profitable): New.
      	(fsm_find_control_statement_thread_paths): Rename VAR_BB to
      	DEF_BB.
      	Make GC	vectors heap vectors.  Clean up comments.
      	Make visited_bbs a reference.
      	(find_jump_threads_backwards): Make visited_bbs live in the stack.
      	* tree-ssa-threadupdate.c (delete_jump_thread_path): Fix typo in
      	comment.
      
      From-SVN: r251998
      Aldy Hernandez committed
    • Daily bump. · ff3e3d99
      From-SVN: r251996
      GCC Administrator committed
  2. 11 Sep, 2017 21 commits
    • PR libstdc++/70483 make std::string_view fully constexpr · c5ae1a27
      	PR libstdc++/70483
      	* include/bits/string_view.tcc (basic_string_view::find)
      	(basic_string_view::rfind, basic_string_view::find_first_of)
      	(basic_string_view::find_last_of, basic_string_view::find_first_not_of)
      	(basic_string_view::find_last_not_of): Add constexpr specifier.
      	* include/std/string_view (basic_string_view::operator=)
      	(basic_string_view::rbegin, basic_string_view::rend)
      	(basic_string_view::crbegin, basic_string_view::crend)
      	(basic_string_view::remove_prefix, basic_string_view::remove_suffix)
      	(basic_string_view::swap, basic_string_view::compare)
      	(basic_string_view::find, basic_string_view::rfind)
      	(basic_string_view::find_first_of, basic_string_view::find_last_of)
      	(basic_string_view::find_first_not_of)
      	(basic_string_view::find_last_not_of, basic_string_view::_M_check)
      	(basic_string_view::_M_limit, operator==, operator!=, operator<)
      	(operator>, operator<=, operator>=): Likewise.
      	* testsuite/21_strings/basic_string_view/modifiers/remove_prefix/
      	char/1.cc: Repeat tests in constexpr context.
      	* testsuite/21_strings/basic_string_view/modifiers/remove_prefix/
      	wchar_t/1.cc: Likewise.
      	* testsuite/21_strings/basic_string_view/modifiers/remove_suffix/
      	char/1.cc: Likewise.
      	* testsuite/21_strings/basic_string_view/modifiers/remove_suffix/
      	wchar_t/1.cc: Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/char/1.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/char/2.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/char/3.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/wchar_t/1.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/wchar_t/2.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/find/wchar_t/3.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operators/char/2.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operators/wchar_t/2.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/range_access/char/1.cc: Test
      	cbegin, cend, rbegin, rend, crbegin and crend.
      	* testsuite/21_strings/basic_string_view/range_access/wchar_t/1.cc:
      	Likewise.
      	* testsuite/21_strings/basic_string_view/operations/compare/char/1.cc:
      	Remove trailing whitespace.
      	* testsuite/21_strings/basic_string_view/operations/compare/wchar_t/
      	1.cc: Likewise.
      	* testsuite/21_strings/basic_string_view/modifiers/swap/char/1.cc:
      	New.
      	* testsuite/21_strings/basic_string_view/modifiers/swap/wchar_t/1.cc:
      	New.
      	* testsuite/21_strings/basic_string_view/operations/compare/char/2.cc:
      	New.
      	* testsuite/21_strings/basic_string_view/operations/compare/wchar_t/
      	2.cc: New.
      
      From-SVN: r251988
      Jonathan Wakely committed
    • xtensa: fix PR target/82181 · 738ae6ee
      2017-09-11  Max Filippov  <jcmvbkbc@gmail.com>
      gcc/
      	* config/xtensa/xtensa.c (xtensa_mem_offset): Check that both
      	words of E_DImode object are reachable by xtensa_uimm8x4 access.
      
      From-SVN: r251986
      Max Filippov committed
    • re PR libstdc++/71500 (regex::icase only works on first character in a range) · 3366a474
      	PR libstdc++/71500
      	* include/bits/regex_executor.tcc: Support icase in regex_tratis<...>
      	for back reference matches.
      	* testsuite/28_regex/regression.cc: Test case.
      
      From-SVN: r251982
      Tim Shen committed
    • Adjust test to pass with old std::string · 47d7966a
      	* testsuite/21_strings/basic_string/lwg2946.cc: Adjust for
      	compatibility with old COW std::string.
      
      From-SVN: r251981
      Jonathan Wakely committed
    • 2017-09-11 Vidya Praveen <vidyapraveen@arm.com> · eaddd128
      	Revert r251800 and r251799.
      
      From-SVN: r251980
      Vidya Praveen committed
    • Add myself as ARM port maintainer · 1328002a
      2017-09-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
      
      	* MAINTAINERS (Reviewers): Move myself from here...
      	(CPU Port Maintainers): ... to here.
      
      From-SVN: r251979
      Kyrylo Tkachov committed
    • [multiple changes] · a83d0680
      2017-09-11  Arnaud Charlet  <charlet@adacore.com>
      
      	* doc/gnat_ugn/the_gnat_compilation_model.rst: Fix sphinx warning.
      	* doc/gnat_ugn/platform_specific_information.rst: Remove doc
      	for no longer supported platforms.
      	* doc/gnat_ugn/gnat_and_program_execution.rst: Added detailed
      	description of the semantics for dimensionality analysis.
      	* gnat_ugn.texi: Regenerated.
      
      2017-09-11  Eric Botcazou  <ebotcazou@adacore.com>
      
      	* freeze.adb (Has_Incomplete_Compoent): Delete.
      	(Freeze_Profile):
      	Do not inhibit the freezing of the profile of an expression
      	function here.
      	(Freeze_Subprogram): Do not re-create extra formals.
      	* sem_ch6.adb (Analyze_Expression_Function): Always
      	pre-analyze the expression if the function is not a completion.
      	(Analyze_Subprogram_Body_Helper): For the body generated
      	from an expression function that is not a completion, do
      	not freeze the profile and temporary mask the types declared
      	outside the expression that are not yet frozen.
      	* sem_res.adb (Rewrite_Renamed_Operator): Also bail out if invoked
      	during the pre-analysis of an expression function.
      
      From-SVN: r251978
      Arnaud Charlet committed
    • Removed, no longer used. · c65e7627
      From-SVN: r251977
      Arnaud Charlet committed
    • Removed, no longer used. · f9e9e713
      From-SVN: r251976
      Arnaud Charlet committed
    • gigi.h (enum standard_datatypes): Minor tweak. · ab3dd4ab
      	* gcc-interface/gigi.h (enum standard_datatypes): Minor tweak.
      	(gigi): Likewise.
      
      From-SVN: r251974
      Eric Botcazou committed
    • Restored, removed by mistake. · e6a096d1
      From-SVN: r251973
      Arnaud Charlet committed
    • Renamed s-thread__ae653.adb · dcf59308
      From-SVN: r251972
      Arnaud Charlet committed
    • Removed, no longer used. · c64be637
      From-SVN: r251971
      Arnaud Charlet committed
    • New file. · 1c1c5b60
      From-SVN: r251970
      Arnaud Charlet committed
    • Removed, no longer used. · 6942aa8f
      From-SVN: r251969
      Arnaud Charlet committed
    • libgnat: Rename ?-[a-z]*-* into ?-[a-z]*__* · a0713cb6
      2017-09-11  Jerome Lambourg  <lambourg@adacore.com>
      
              * libgnat: Rename ?-[a-z]*-* into ?-[a-z]*__*
              * gcc-interface/Makefile.in, gcc-interface/Make-lang.in: Take this
      	renaming into account.
      
      From-SVN: r251968
      Arnaud Charlet committed
    • lib-xref-spark_specific.adb: Minor rewrite. · 6f77df72
      2017-09-11  Yannick Moy  <moy@adacore.com>
      
      	* lib-xref-spark_specific.adb: Minor rewrite.
      
      From-SVN: r251967
      Yannick Moy committed
    • Makefile.in: Take this renaming into account. · 6daeb156
      2017-09-11  Jerome Lambourg  <lambourg@adacore.com>
      
      	* gcc-interface/Makefile.in: Take this renaming into account.
      
      From-SVN: r251966
      Jerome Lambourg committed
    • libgnarl: Rename ?-[a-z]*-* into ?-[a-z]*__* · 2b9d0dc0
      2017-09-11  Jerome Lambourg  <lambourg@adacore.com>
      
              * libgnarl: Rename ?-[a-z]*-* into ?-[a-z]*__*
              * gcc-interface/Makefile.in: Take this renaming into account.
      
      From-SVN: r251965
      Arnaud Charlet committed
    • Make HSA resilient to side-effects of split_edge · 635c99aa
      2017-09-11  Martin Jambor  <mjambor@suse.cz>
      
      	PR hsa/82119
      	* hsa-gen.c (gen_hsa_phi_from_gimple_phi): Process ADDR_EXPRs in
      	arguments in advance.
      	* hsa-regalloc.c (naive_process_phi): New parameter predecessors,
      	use it to find predecessor edges.
      	(naive_outof_ssa): Collect vector of predecessors.
      
      From-SVN: r251964
      Martin Jambor committed
    • Removed. · 15bac191
      From-SVN: r251963
      Arnaud Charlet committed