1. 19 Jul, 2016 14 commits
  2. 18 Jul, 2016 14 commits
    • re PR c++/70869 (internal compiler error: Segmentation fault on array of pointer… · e43ebb12
      re PR c++/70869 (internal compiler error: Segmentation fault on array of pointer to function members)
      
      	PR c++/70869
      	PR c++/71054
      	* cp-gimplify.c (cp_genericize_r): Revert the 2016-07-07 change.
      	* tree.c (cp_walk_subtrees): For DECL_EXPR on DECL_ARTIFICIAL
      	non-static VAR_DECL, walk the decl's DECL_INITIAL, DECL_SIZE and
      	DECL_SIZE_UNIT.
      
      From-SVN: r238444
      Jakub Jelinek committed
    • re PR c++/71835 (ICE on invalid C++ code with ambiguous overloaded operators:… · 99516432
      re PR c++/71835 (ICE on invalid C++ code with ambiguous overloaded operators: tree check: expected tree that contains ‘decl minimal’ structure, have ‘pointer_type’ in convert_like_real, at cp/call.c:6549)
      
      	PR c++/71835
      	* call.c (build_op_call_1): Use convert_like_with_context only
      	if cand->fn is a decl.
      
      	* g++.dg/conversion/ambig3.C: New test.
      
      From-SVN: r238443
      Jakub Jelinek committed
    • re PR c++/71828 (ICE on valid C++11 code with constexpr __Complex int variable… · 87713c6a
      re PR c++/71828 (ICE on valid C++11 code with constexpr __Complex int variable declaration: in operand_equal_p, at fold-const.c:2790)
      
      	PR c++/71828
      	* constexpr.c (cxx_eval_constant_expression) <case REALPART_EXPR>:
      	For lval don't use cxx_eval_unary_expression and instead recurse
      	and if needed rebuild the reference.
      
      	* g++.dg/cpp0x/constexpr-71828.C: New test.
      
      From-SVN: r238442
      Jakub Jelinek committed
    • re PR c++/71826 (ICE on valid C++ code with ambiguous member lookup: tree check:… · 7a7f16ca
      re PR c++/71826 (ICE on valid C++ code with ambiguous member lookup: tree check: expected baselink, have error_mark in tsubst_baselink, at cp/pt.c:13737)
      
      	PR c++/71826
      	* pt.c (tsubst_baselink): Only set BASELINK_OPTYPE for BASELINK_P.
      
      	* g++.dg/template/pr71826.C: New test.
      
      From-SVN: r238441
      Jakub Jelinek committed
    • re PR c++/71822 (ICE: in gimplify_expr, at gimplify.c:11025) · f4d90295
      	PR c++/71822
      	* cp-gimplify.c (cp_gimplify_expr) <case VEC_INIT_EXPR>: Recursively
      	fold *expr_p before genericizing it.
      
      	* g++.dg/template/defarg21.C: New test.
      
      From-SVN: r238440
      Jakub Jelinek committed
    • re PR c++/71871 (ICE on mixing templates and vector extensions ternary operator) · f2111a36
      	PR c++/71871
      	* typeck.c (build_x_conditional_expr): Revert the 2012-10-25 change.
      
      	* g++.dg/ext/vector31.C: New test.
      
      From-SVN: r238439
      Jakub Jelinek committed
    • pr70017.c: Do not check for warning on alpha*-*-*. · 0b965526
      	* gcc.dg/pr70017.c: Do not check for warning on alpha*-*-*.
      
      From-SVN: r238438
      Uros Bizjak committed
    • Demangle C++17 fold-expressions. · 7864eaaf
      	* cp-demangle.c (cplus_demangle_operators): Add f[lrLR].
      	(d_expression_1): Handle them.
      	(d_maybe_print_fold_expression): New.
      	(d_print_comp_inner): Use it.
      	(d_index_template_argument): Handle negative index.
      
      From-SVN: r238437
      Jason Merrill committed
    • Clean up optional's comments. · 40f3e913
      From-SVN: r238436
      Ville Voutilainen committed
    • re PR middle-end/71734 (FAIL: libgomp.fortran/simd4.f90 -O3 -g execution test) · 94e136b9
      gcc/
      
      2016-07-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
      
      	PR tree-optimization/71734
      	* tree-ssa-loop-im.c (ref_indep_loop_p_1): Add REF_LOOP argument which
      	contains REF, use it to check safelen, assume that safelen value
      	must be greater 1, fix style.
      	(ref_indep_loop_p_2): Add REF_LOOP argument.
      	(ref_indep_loop_p): Pass LOOP as additional argument to
      	ref_indep_loop_p_2.
      
      gcc/testsuite/
      
      2016-07-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
      
      	PR tree-optimization/71734
      	* g++.dg/vect/pr70729.cc: Delete redundant dg options, fix style.
      
      From-SVN: r238435
      Yuri Rumyantsev committed
    • Allocate constant size dynamic stack space in the prologue · 7072df0a
      The attached patch fixes a warning during Linux kernel compilation
      on S/390 due to -mwarn-dynamicstack and runtime alignment of stack
      variables with constant size causing cfun->calls_alloca to be set
      (even if alloca is not used at all).  The patched code places
      constant size runtime aligned variables in the "virtual stack
      vars" area instead of creating a "virtual stack dynamic" area.
      
      This behaviour is activated by defining
      
        #define ALLOCATE_DYNAMIC_STACK_SPACE_IN_PROLOGUE 1
      
      in the backend; otherwise the old logic is used.
      
      The kernel uses runtime alignment for the page structure (aligned
      to 16 bytes), and apart from triggereing the alloca warning
      (-mwarn-dynamicstack), the current Gcc also generates inefficient
      code like
      
        aghi %r15,-160  # prologue: create stack frame
          lgr %r11,%r15   # prologue: generate frame pointer
            aghi %r15,-32   # space for dynamic stack
      
      which could be simplified to
      
        aghi %r15,-192
      
      (if later optimization passes are able to get rid of the frame
      pointer).  Is there a specific reason why the patched behaviour
      shouldn't be used for all platforms?
      
      --
      
      As the placement of runtime aligned stack variables with constant
      size is done completely in the middleend, I don't see a way to fix
      this in the backend.
      
      gcc/ChangeLog:
      
      2016-07-18  Dominik Vogt  <vogt@linux.vnet.ibm.com>
      
      	* cfgexpand.c (expand_stack_vars): Implement synamic stack space
      	allocation in the prologue.
      	* explow.c (get_dynamic_stack_base): New function to return an address
      	expression for the dynamic stack base.
      	(get_dynamic_stack_size): New function to do the required dynamic stack
      	space size calculations.
      	(allocate_dynamic_stack_space): Use new functions.
      	(align_dynamic_address): Move some code from
      	allocate_dynamic_stack_space to new function.
      	* explow.h (get_dynamic_stack_base, get_dynamic_stack_size): Export.
      
      gcc/testsuite/ChangeLog:
      
      2016-07-18  Dominik Vogt  <vogt@linux.vnet.ibm.com>
      
      	* gcc.target/s390/warn-dynamicstack-1.c: New test.
      	* gcc.dg/stack-usage-2.c (foo3): Adapt expected warning.
      	stack-layout-dynamic-1.c: New test.
      
      From-SVN: r238432
      Dominik Vogt committed
    • S/390: Fix alignment check for literal pool references. · 54158a1a
      gcc/ChangeLog:
      
      2016-07-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* config/s390/s390.c (s390_encode_section_info): Always set
      	notaligned marker if mode size is 0 or no MEM_ALIGN info could be
      	found.
      
      gcc/testsuite/ChangeLog:
      
      2016-07-18  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* gcc.target/s390/nolrl-1.c: New test.
      
      From-SVN: r238427
      Andreas Krebbel committed
    • re PR tree-optimization/71893 (gfortran.dg ICEs in gcc/tree-ssa-pre.c; -fcode-hoisting?) · 2e7565b2
      2016-07-18  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/71893
      	* tree-ssa-pre.c (create_component_ref_by_pieces_1): Compensate
      	for sizetype cast added by array_ref_element_size.
      	* tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
      
      From-SVN: r238426
      Richard Biener committed
    • Daily bump. · 9c9549e1
      From-SVN: r238424
      GCC Administrator committed
  3. 17 Jul, 2016 2 commits
  4. 16 Jul, 2016 3 commits
  5. 15 Jul, 2016 7 commits