1. 18 Oct, 2017 12 commits
    • re PR lto/82598 (lto debugobj lacks .note.GNU-stack) · f8049c44
      	PR lto/82598
      	* simple-object.c (handle_lto_debug_sections): Copy over also
      	.note.GNU-stack section with unchanged name.
      	* simple-object-elf.c (SHF_EXECINSTR): Define.
      	(simple_object_elf_copy_lto_debug_section): Drop SHF_EXECINSTR bit
      	on .note.GNU-stack section.
      
      From-SVN: r253851
      Jakub Jelinek committed
    • S/390: Do not end groups after fallthru edge. · ac2bb522
      gcc/ChangeLog:
      
      2017-10-17  Robin Dapp  <rdapp@linux.vnet.ibm.com>
      
      	* config/s390/s390.c (s390_bb_fallthru_entry_likely): New function.
      	(s390_sched_init): Do not reset s390_sched_state if we entered the
      	current basic block via a fallthru edge and all others are unlikely.
      
      From-SVN: r253850
      Robin Dapp committed
    • S/390: Handle long-running instructions. · 67ba3393
      gcc/ChangeLog:
      
      2017-10-18  Robin Dapp  <rdapp@linux.vnet.ibm.com>
      
      	* config/s390/s390.c (NUM_SIDES): New variable.
      	(LONGRUNNING_THRESHOLD): New variable.
      	(LATENCY_FACTOR): New variable.
      	(s390_sched_score): Decrease score for long-running instructions on
      	wrong side.
      	(s390_sched_variable_issue): Perform bookkeeping for long-running
      	instructions.
      
      From-SVN: r253849
      Robin Dapp committed
    • re PR fortran/82550 (program using submodules fails to link) · ee077fcb
      2017-10-18  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/82550
      	* trans_decl.c (gfc_get_symbol_decl): Procedure symbols that
      	have the 'used_in_submodule' attribute should be processed by
      	'gfc_get_extern_function_decl'.
      
      2017-10-18  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/82550
      	* gfortran.dg/submodule_30.f08 : New test.
      
      From-SVN: r253848
      Paul Thomas committed
    • graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id): Simplify… · 04612f7f
      graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id): Simplify with removal of the parameter rename map.
      
      2017-10-18  Richard Biener  <rguenther@suse.de>
      
      	* graphite-isl-ast-to-gimple.c (gcc_expression_from_isl_ast_expr_id):
      	Simplify with removal of the parameter rename map.
      	(set_rename): Likewise.
      	(should_copy_to_new_region): Likewise.
      	(graphite_copy_stmts_from_block): Likewise.
      	(copy_bb_and_scalar_dependences): Remove initialization of
      	unused copied_bb_map.
      	(copy_def): Remove.
      	(copy_internal_parameters): Likewise.
      	(graphite_regenerate_ast_isl): Do not call copy_internal_parameters.
      	* graphite-scop-detection.c (scop_detection::stmt_simple_for_scop_p):
      	Use INTEGRAL_TYPE_P.
      	(parameter_index_in_region_1): Rename to ...
      	(assign_parameter_index_in_region): ... this.  Assert we have
      	a parameter we handle.
      	(scan_tree_for_params): Adjust.
      	* sese.h (parameter_rename_map_t): Remove.
      	(struct sese_info_t): Remove unused parameter_rename_map and
      	copied_bb_map members.
      	* sese.c (new_sese_info): Adjust.
      	(free_sese_info): Likewise.
      
      From-SVN: r253847
      Richard Biener committed
    • S/390: Fix vec-cmp-2 testcase · de57059e
      The functions all call foo and therefore need a stack frame what makes
      them subject to shrink wrapping.  Also all the additional instructions
      in the function body makes it fragile wrt instruction scheduling.  Just
      set a global variable instead to circumvent this.
      
      gcc/testsuite/ChangeLog:
      
      2017-10-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* gcc.target/s390/zvector/vec-cmp-2.c
      	(all_eq_double, all_ne_double, all_gt_double)
      	(all_lt_double, all_ge_double, all_le_double)
      	(any_eq_double, any_ne_double, any_gt_double)
      	(any_lt_double, any_ge_double, any_le_double)
      	(all_eq_int, all_ne_int, all_gt_int)
      	(all_lt_int, all_ge_int, all_le_int)
      	(any_eq_int, any_ne_int, any_gt_int)
      	(any_lt_int, any_ge_int, any_le_int): Set global variable instead
      	of calling foo().  Fix return type.
      
      From-SVN: r253846
      Andreas Krebbel committed
    • Do not put gimple stmt on an abnormal edge (PR sanitizer/82545). · 236ac442
      2017-10-18  Martin Liska  <mliska@suse.cz>
      
      	PR sanitizer/82545
      	* asan.c (asan_expand_poison_ifn): Do not put gimple stmt
      	on an abnormal edge.
      2017-10-18  Martin Liska  <mliska@suse.cz>
      
      	PR sanitizer/82545
      	* gcc.dg/asan/pr82545.c: New test.
      
      From-SVN: r253845
      Martin Liska committed
    • re PR c++/69057 ([C++14] constexpr static variable template assertion segmentation fault) · 1b2944cb
      2017-10-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/69057
      	* g++.dg/cpp1y/auto-fn45.C: New.
      
      From-SVN: r253844
      Paolo Carlini committed
    • re PR c++/68884 (template of value template crashes the compiler) · 257792c5
      2017-10-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/68884
      	* g++.dg/cpp0x/variadic-crash4.C: New.
      
      From-SVN: r253843
      Paolo Carlini committed
    • Update -ffunction/data-sections documentation · f381d87a
      gcc/
      	* doc/invoke.texi (ffunction-sections and fdata-sections):
      	Update.
      
      From-SVN: r253842
      Sebastian Huber committed
    • re PR c++/79474 (Multiple definitions of user-defined conversion operator cause… · 173a960a
      re PR c++/79474 (Multiple definitions of user-defined conversion operator cause ICE (internal compiler error))
      
      2017-10-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/79474
      	* g++.dg/cpp1y/auto-fn44.C: New.
      
      From-SVN: r253841
      Paolo Carlini committed
    • Daily bump. · 697fb2ae
      From-SVN: r253840
      GCC Administrator committed
  2. 17 Oct, 2017 27 commits
  3. 16 Oct, 2017 1 commit
    • MAINTAINERS (write after approval): Add myself. · fb336a7b
      ChangeLog:
      
      2017-10-16  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
      
              * MAINTAINERS (write after approval): Add myself.
      
      Index: MAINTAINERS
      ===================================================================
      --- MAINTAINERS (revision 253797)
      +++ MAINTAINERS (working copy)
      @@ -603,6 +603,7 @@
       Philipp Tomsich                                        <philipp.tomsich@theobroma-systems.com>
       Konrad Trifunovic                              <konrad.trifunovic@inria.fr>
       Markus Trippelsdorf                            <markus@trippelsdorf.de>
      +Igor Tsimbalist                                        <igor.v.tsimbalist@intel.com>
       Martin Uecker                                  <uecker@eecs.berkeley.edu>
       David Ung                                      <davidu@mips.com>
       Neil Vachharajani                              <nvachhar@gmail.com>
      
      From-SVN: r253798
      Igor Tsimbalist committed