1. 09 Aug, 2017 4 commits
    • Boolify some parameters. · 30af3a2b
      From-SVN: r250986
      Marek Polacek committed
    • re PR c/81233 (--Wdiscarded-qualifiers and Wincompatible-pointer-types missing important detail) · 296c53ac
      	PR c/81233
      	* c-typeck.c (pedwarn_init): Make the function take a variable list.
      	Call emit_diagnostic_valist instead of pedwarn.
      	(convert_for_assignment): Unroll the PEDWARN_FOR_ASSIGNMENT macro.
      	Print the relevant types in diagnostics.
      
      	* diagnostic-core.h (emit_diagnostic_valist): Add declaration.
      	* diagnostic.c (emit_diagnostic): Add a comment.
      	(emit_diagnostic_valist): New function.
      
      	* gcc.dg/diagnostic-types-1.c: New test.
      	* gcc.dg/assign-warn-1.c: Update warning messages.
      	* gcc.dg/assign-warn-2.c: Likewise.
      	* gcc.dg/c90-const-expr-5.c: Likewise.
      	* gcc.dg/c99-const-expr-5.c: Likewise.
      	* gcc.dg/conv-2.c: Likewise.
      	* gcc.dg/init-bad-7.c: Likewise.
      	* gcc.dg/overflow-warn-1.c: Likewise.
      	* gcc.dg/overflow-warn-2.c: Likewise.
      	* gcc.dg/overflow-warn-3.c: Likewise.
      	* gcc.dg/overflow-warn-4.c: Likewise.
      	* gcc.dg/pointer-array-atomic.c: Likewise.
      	* gcc.dg/pr26865.c: Likewise.
      	* gcc.dg/pr61162-2.c: Likewise.
      	* gcc.dg/pr61162.c: Likewise.
      	* gcc.dg/pr67730-2.c: Likewise.
      	* gcc.dg/pr69156.c: Likewise.
      	* gcc.dg/pr70174.c: Likewise.
      	* objc.dg/proto-lossage-4.m: Likewise.
      
      From-SVN: r250985
      Marek Polacek committed
    • re PR c/81417 (-Wsign-compare should print types being compared) · a32c8316
      	PR c/81417
      	* c-array-notation.c (fix_builtin_array_notation_fn): Update calls to
      	build_conditional_expr.	
      	* c-parser.c (c_parser_conditional_expression): Create locations for
      	EXP1 and EXP2 from their source ranges.  Pass the locations down to
      	build_conditional_expr.
      	* c-tree.h (build_conditional_expr): Update declaration.
      	* c-typeck.c (build_conditional_expr): Add location_t parameters.
      	For -Wsign-compare, also print the types.
      
      	* input.c (make_location): New overload.
      	* input.h (make_location): Declare.
      
      	* objc-next-runtime-abi-02.c (build_v2_build_objc_method_call): Update
      	a call to build_conditional_expr.
      
      	* Wsign-compare-1.c: New test.
      	* gcc.dg/compare1.c: Adjust dg-bogus.
      	* gcc.dg/compare2.c: Likewise.
      	* gcc.dg/compare3.c: Likewise.
      	* gcc.dg/compare7.c: Likewise.
      	* gcc.dg/compare8.c: Likewise.
      	* gcc.dg/compare9.c: Likewise.
      	* gcc.dg/pr11492.c: Likewise.
      
      From-SVN: r250984
      Marek Polacek committed
    • Daily bump. · bc47a525
      From-SVN: r250983
      GCC Administrator committed
  2. 08 Aug, 2017 16 commits
    • PR driver/81523: Make -static override -pie · 7345b714
      -static and -pie together behave differently depending on whether GCC is
      configured with --enable-default-pie.  On x86, "-static -pie" fails to
      create executable when --enable-default-pie isn't used, but creates a
      static executable when --enable-default-pie is used.  This patch makes
      -static completely override -pie to create a static executable, regardless
      if --enable-default-pie is used to configure GCC.
      
      gcc/
      
      	PR driver/81523
      	* gcc.c (NO_PIE_SPEC): Delete.
      	(PIE_SPEC): Define as !no-pie/pie.  Move static|shared|r
      	exclusion..
      	(LINK_PIE_SPEC): ..to here.
      	(LINK_COMMAND_SPEC): Support -no-pie.
      	* config/gnu-user.h (GNU_USER_TARGET_STARTFILE_SPEC): Correct
      	chain of crtbegin*.o selection, update for PIE_SPEC changes and
      	format.
      	(GNU_USER_TARGET_ENDFILE_SPEC): Similarly.
      	* config/sol2.h (STARTFILE_CRTBEGIN_SPEC): Similarly.
      	(ENDFILE_CRTEND_SPEC): Similarly.
      
      gcc/testsuite/
      
      	PR driver/81523
      	* gcc.dg/pie-7.c: New test.
      	* gcc.dg/pie-static-1.c: Likewise.
      	* gcc.dg/pie-static-2.c: Likewise.
      
      From-SVN: r250974
      H.J. Lu committed
    • re PR target/81708 (The x86 stack canary location should be customizable) · d5bf81b3
      	PR target/81708
      	* config/i386/i386.opt (mstack-protector-guard-reg=): New option
      	(mstack-protector-guard-offset=): Ditto.
      	* config/i386/i386.c (ix86_option_override): Handle
      	-mstack-protector-guard-reg= and -mstack-protector-guard-offset=
      	options.
      	(ix86_stack_protect_guard): Use ix86_stack_protect_guard_reg and
      	ix86_stack_protect_guard_offset variables.
      	(TARGET_STACK_PROTECT_GUARD): Always define.
      	* doc/invoke.texi (x86 Options): Document -mstack-protector-guard-reg=
      	and -mstack-protector-guard-offset= options.
      
      testsuite/ChangeLog:
      
      	PR target/81708
      	* gcc.target/i386/stack-prot-guard.c: New test.
      
      From-SVN: r250965
      Uros Bizjak committed
    • tree-ssa-loop-ivopts.c (relate_compare_use_with_all_cands): Handle boundary case… · 7d27b70b
      tree-ssa-loop-ivopts.c (relate_compare_use_with_all_cands): Handle boundary case for the last candidate.
      
      	* tree-ssa-loop-ivopts.c (relate_compare_use_with_all_cands): Handle
      	boundary case for the last candidate.
      
      From-SVN: r250960
      Bin Cheng committed
    • invoke.texi: Document -ftree-loop-distribution for O3. · 5a115661
      	* doc/invoke.texi: Document -ftree-loop-distribution for O3.
      	* opts.c (default_options_table): Add OPT_ftree_loop_distribution.
      
      From-SVN: r250959
      Bin Cheng committed
    • re PR middle-end/19706 (Recognize common Fortran usages of copysign.) · 4261463d
      2017-08-08  Tamar Christina  <tamar.christina@arm.com>
      
      	PR middle-end/19706
      	* config/aarch64/aarch64.md (xorsign<mode>3): New optabs.
      	* config/aarch64/aarch64-builtins.c
      	(aarch64_builtin_vectorized_function): Added CASE_CFN_XORSIGN.
      	* config/aarch64/aarch64-simd-builtins.def: Added xorsign BINOP.
      	* config/aarch64/aarch64-simd.md: Added xorsign<mode>3.
      
      gcc/testsuite/
      2017-08-08  Tamar Christina  <tamar.christina@arm.com>
      
      	* gcc.target/aarch64/xorsign.c: New.
      	* gcc.target/aarch64/xorsign_exec.c: New.
      	* gcc.target/aarch64/vect-xorsign_exec.c: New.
      
      From-SVN: r250957
      Tamar Christina committed
    • re PR middle-end/19706 (Recognize common Fortran usages of copysign.) · 336a06a1
      2017-08-08  Tamar Christina  <tamar.christina@arm.com>
      	    Andrew Pinski <pinskia@gmail.com>
      
      	PR middle-end/19706
      	* internal-fn.def (XORSIGN): New.
      	* optabs.def (xorsign_optab): New.
      	* tree-ssa-math-opts.c (is_copysign_call_with_1): New.
      	(convert_expand_mult_copysign): New.
      	(pass_optimize_widening_mul::execute): Call convert_expand_mult_copysign.
      
      
      Co-Authored-By: Andrew Pinski <pinskia@gmail.com>
      
      From-SVN: r250956
      Tamar Christina committed
    • re PR tree-optimization/81354 (Segmentation fault in SSA Strength Reduction using -O3) · b115e803
      [gcc]
      
      2017-08-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/81354
      	* gimple-ssa-strength-reduction.c (create_add_on_incoming_edge):
      	Insert on edges rather than explicitly creating landing pads.
      	(analyze_candidates_and_replace): Commit edge inserts.
      
      
      [gcc/testsuite]
      
      2017-08-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/81354
      	* g++.dg/torture/pr81354.C: New file.
      
      From-SVN: r250955
      Bill Schmidt committed
    • re PR middle-end/81719 (Range-based for loop on short fixed size array generates… · 51bd28ed
      re PR middle-end/81719 (Range-based for loop on short fixed size array generates long unrolled loop)
      
      2017-08-08  Richard Biener  <rguenther@suse.de>
      
      	PR middle-end/81719
      	* tree-ssa-loop-niter.c: Include tree-dfa.h.
      	(expand_simple_operations): Also look through ADDR_EXPRs with
      	MEM_REF bases treating them as POINTER_PLUS_EXPR.
      
      	* g++.dg/tree-ssa/pr81719.C: New testcase.
      
      From-SVN: r250954
      Richard Biener committed
    • re PR tree-optimization/81723 (fortran build doesn't terminate on 64bit targets) · 26d66f28
      2017-08-08  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/81723
      	* tree-vect-slp.c (struct bst_traits): New hash traits.
      	(bst_fail): New global.
      	(vect_build_slp_tree_2): New worker, split out from ...
      	(vect_build_slp_tree): ... this now wrapping it with using
      	bst_fail set to cache SLP tree build fails.  Properly handle
      	max_tree_size.
      	(vect_analyze_slp_instance): Allocate and free bst_fail.
      
      	* gfortran.dg/pr81723.f: New testcase.
      
      From-SVN: r250953
      Richard Biener committed
    • scalar-extract-exp-2.c: Adjust diagnostic string. · 82c0d3eb
      2017-08-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	* gcc.target/powerpc/bfp/scalar-extract-exp-2.c: Adjust diagnostic
      	string.
      	* gcc.target/powerpc/bfp/scalar-extract-exp-5.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-extract-sig-2.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-extract-sig-5.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-insert-exp-11.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-insert-exp-2.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-insert-exp-5.c: Likewise.
      	* gcc.target/powerpc/bfp/scalar-insert-exp-8.c: Likewise.
      	* gcc.target/powerpc/byte-in-set-2.c: Likewise.
      	* gcc.target/powerpc/cmpb-3.c: Likewise.
      	* gcc.target/powerpc/vsu/vec-xl-len-13.c: Likewise.
      	* gcc.target/powerpc/vsu/vec-xst-len-13.c: Likewise.
      
      From-SVN: r250952
      Bill Schmidt committed
    • ICF: properly handle LABEL_DECLs (PR tree-opt/81696). · d81e058f
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	PR tree-opt/81696
      	* ipa-icf-gimple.c (func_checker::compare_cst_or_decl): Consider
      	LABEL_DECLs that can be from a different function.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	PR tree-opt/81696
      	* gcc.dg/ipa/pr81696.c: New test.
      
      From-SVN: r250951
      Martin Liska committed
    • re PR tree-optimization/81744 (ICE: verify_ssa failed, at tree-ssa.c:1186) · a5c93f53
      	PR tree-optimization/81744
      	* tree-predcom.c (prepare_finalizers_chain): Deep copy expr of
      	loop's number of iterations.
      
      	gcc/testsuite
      	* gcc.dg/tree-ssa/pr81744.c: New.
      
      From-SVN: r250950
      Bin Cheng committed
    • Add missing include of attribs.h in lto.c · eac3ab4a
      2017-08-08  Tom de Vries  <tom@codesourcery.com>
      
      	* lto.c: Include attribs.h.
      
      From-SVN: r250949
      Tom de Vries committed
    • re PR c++/81607 (Conditional operator: "type mismatch in shift expression" error) · a5afbdd6
      	PR c++/81607
      	* cp-gimplify.c (cp_fold): If folding exposed a branch of
      	a COND_EXPR, convert it to the original type of the COND_EXPR, if
      	they differ.		   
      
      	* g++.dg/other/bitfield6.C: New test.
      
      From-SVN: r250948
      Marek Polacek committed
    • trans.c: Include header files. · 314e6352
      .
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* gcc-interface/trans.c: Include header files.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* objc-gnu-runtime-abi-01.c: Include header files.
      	* objc-next-runtime-abi-01.c: Likewise.
      	* objc-next-runtime-abi-02.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* asan.c: Include header files.
      	* attribs.c (build_decl_attribute_variant): New function moved
      	from tree.[ch].
      	(build_type_attribute_qual_variant): Likewise.
      	(cmp_attrib_identifiers): Likewise.
      	(simple_cst_list_equal): Likewise.
      	(omp_declare_simd_clauses_equal): Likewise.
      	(attribute_value_equal): Likewise.
      	(comp_type_attributes): Likewise.
      	(build_type_attribute_variant): Likewise.
      	(lookup_ident_attribute): Likewise.
      	(remove_attribute): Likewise.
      	(merge_attributes): Likewise.
      	(merge_type_attributes): Likewise.
      	(merge_decl_attributes): Likewise.
      	(merge_dllimport_decl_attributes): Likewise.
      	(handle_dll_attribute): Likewise.
      	(attribute_list_equal): Likewise.
      	(attribute_list_contained): Likewise.
      	* attribs.h (lookup_attribute): New function moved from tree.[ch].
      	(lookup_attribute_by_prefix): Likewise.
      	* bb-reorder.c: Include header files.
      	* builtins.c: Likewise.
      	* calls.c: Likewise.
      	* cfgexpand.c: Likewise.
      	* cgraph.c: Likewise.
      	* cgraphunit.c: Likewise.
      	* convert.c: Likewise.
      	* dwarf2out.c: Likewise.
      	* final.c: Likewise.
      	* fold-const.c: Likewise.
      	* function.c: Likewise.
      	* gimple-expr.c: Likewise.
      	* gimple-fold.c: Likewise.
      	* gimple-pretty-print.c: Likewise.
      	* gimple.c: Likewise.
      	* gimplify.c: Likewise.
      	* hsa-common.c: Likewise.
      	* hsa-gen.c: Likewise.
      	* internal-fn.c: Likewise.
      	* ipa-chkp.c: Likewise.
      	* ipa-cp.c: Likewise.
      	* ipa-devirt.c: Likewise.
      	* ipa-fnsummary.c: Likewise.
      	* ipa-inline.c: Likewise.
      	* ipa-visibility.c: Likewise.
      	* ipa.c: Likewise.
      	* lto-cgraph.c: Likewise.
      	* omp-expand.c: Likewise.
      	* omp-general.c: Likewise.
      	* omp-low.c: Likewise.
      	* omp-offload.c: Likewise.
      	* omp-simd-clone.c: Likewise.
      	* opts-global.c: Likewise.
      	* passes.c: Likewise.
      	* predict.c: Likewise.
      	* sancov.c: Likewise.
      	* sanopt.c: Likewise.
      	* symtab.c: Likewise.
      	* toplev.c: Likewise.
      	* trans-mem.c: Likewise.
      	* tree-chkp.c: Likewise.
      	* tree-eh.c: Likewise.
      	* tree-into-ssa.c: Likewise.
      	* tree-object-size.c: Likewise.
      	* tree-parloops.c: Likewise.
      	* tree-profile.c: Likewise.
      	* tree-ssa-ccp.c: Likewise.
      	* tree-ssa-live.c: Likewise.
      	* tree-ssa-loop.c: Likewise.
      	* tree-ssa-sccvn.c: Likewise.
      	* tree-ssa-structalias.c: Likewise.
      	* tree-ssa.c: Likewise.
      	* tree-streamer-in.c: Likewise.
      	* tree-vectorizer.c: Likewise.
      	* tree-vrp.c: Likewise.
      	* tsan.c: Likewise.
      	* ubsan.c: Likewise.
      	* varasm.c: Likewise.
      	* varpool.c: Likewise.
      	* tree.c: Remove functions moved to attribs.[ch].
      	* tree.h: Likewise.
      	* config/aarch64/aarch64.c: Add attrs.h header file.
      	* config/alpha/alpha.c: Likewise.
      	* config/arc/arc.c: Likewise.
      	* config/arm/arm.c: Likewise.
      	* config/avr/avr.c: Likewise.
      	* config/bfin/bfin.c: Likewise.
      	* config/c6x/c6x.c: Likewise.
      	* config/cr16/cr16.c: Likewise.
      	* config/cris/cris.c: Likewise.
      	* config/darwin.c: Likewise.
      	* config/epiphany/epiphany.c: Likewise.
      	* config/fr30/fr30.c: Likewise.
      	* config/frv/frv.c: Likewise.
      	* config/ft32/ft32.c: Likewise.
      	* config/h8300/h8300.c: Likewise.
      	* config/i386/winnt.c: Likewise.
      	* config/ia64/ia64.c: Likewise.
      	* config/iq2000/iq2000.c: Likewise.
      	* config/lm32/lm32.c: Likewise.
      	* config/m32c/m32c.c: Likewise.
      	* config/m32r/m32r.c: Likewise.
      	* config/m68k/m68k.c: Likewise.
      	* config/mcore/mcore.c: Likewise.
      	* config/microblaze/microblaze.c: Likewise.
      	* config/mips/mips.c: Likewise.
      	* config/mmix/mmix.c: Likewise.
      	* config/mn10300/mn10300.c: Likewise.
      	* config/moxie/moxie.c: Likewise.
      	* config/msp430/msp430.c: Likewise.
      	* config/nds32/nds32-isr.c: Likewise.
      	* config/nds32/nds32.c: Likewise.
      	* config/nios2/nios2.c: Likewise.
      	* config/nvptx/nvptx.c: Likewise.
      	* config/pa/pa.c: Likewise.
      	* config/pdp11/pdp11.c: Likewise.
      	* config/powerpcspe/powerpcspe.c: Likewise.
      	* config/riscv/riscv.c: Likewise.
      	* config/rl78/rl78.c: Likewise.
      	* config/rx/rx.c: Likewise.
      	* config/s390/s390.c: Likewise.
      	* config/sh/sh.c: Likewise.
      	* config/sol2.c: Likewise.
      	* config/sparc/sparc.c: Likewise.
      	* config/spu/spu.c: Likewise.
      	* config/stormy16/stormy16.c: Likewise.
      	* config/tilegx/tilegx.c: Likewise.
      	* config/tilepro/tilepro.c: Likewise.
      	* config/v850/v850.c: Likewise.
      	* config/vax/vax.c: Likewise.
      	* config/visium/visium.c: Likewise.
      	* config/xtensa/xtensa.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* call.c: Include header files.
      	* cp-gimplify.c: Likewise.
      	* cp-ubsan.c: Likewise.
      	* cvt.c: Likewise.
      	* init.c: Likewise.
      	* search.c: Likewise.
      	* semantics.c: Likewise.
      	* typeck.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* lto-lang.c: Include header files.
      	* lto-symtab.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* c-convert.c: Include header files.
      	* c-typeck.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* c-ada-spec.c: Include header files.
      	* c-ubsan.c: Likewise.
      	* c-warn.c: Likewise.
      2017-08-08  Martin Liska  <mliska@suse.cz>
      
      	* trans-types.c: Include header files.
      
      From-SVN: r250946
      Martin Liska committed
    • Daily bump. · 082adc1e
      From-SVN: r250940
      GCC Administrator committed
  3. 07 Aug, 2017 20 commits
    • re PR target/81593 (Optimize PowerPC vector set from vector extract) · 08c4c51e
      [gcc]
      2017-08-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	PR target/81593
      	* config/rs6000/vsx.md (vsx_concat_<mode>, VSX_D): Cleanup
      	constraints since the -mupper-regs-* switches have been
      	eliminated.
      	(vsx_concat_<mode>_1): New combiner insns to recognize inserting
      	into a vector from a double word element that was extracted from
      	another vector, and eliminate extra XXPERMDI instructions.
      	(vsx_concat_<mode>_2): Likewise.
      	(vsx_concat_<mode>_3): Likewise.
      	(vsx_set_<mode>, VSX_D): Rewrite vector set in terms of vector
      	concat to allow optimizing inserts from previous extracts.
      
      [gcc/testsuite]
      2017-08-07  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	PR target/81593
      	* gcc.target/powerpc/vec-setup.h: New tests to test various
      	combinations of setting up vectors of 2 double word elements.
      	* gcc.target/powerpc/vec-setup-long.c: Likewise.
      	* gcc.target/powerpc/vec-setup-double.c: Likewise.
      	* gcc.target/powerpc/vec-setup-be-long.c: Likewise.
      	* gcc.target/powerpc/vec-setup-be-double.c: Likewise.
      	* gcc.target/powerpc/vsx-extract-6.c: New tests for optimzing
      	vector inserts from vector extracts.
      	* gcc.target/powerpc/vsx-extract-7.c: Likewise.
      
      From-SVN: r250936
      Michael Meissner committed
    • i386.c (ix86_stack_protect_guard): Generate memory reference to a SSP offset in TLS address space. · 1abeb09f
      	* config/i386/i386.c (ix86_stack_protect_guard): Generate
      	memory reference to a SSP offset in TLS address space.
      	(ix86_print_operand) <case '@'>: Remove.
      	(ix86_print_operand_punct_valid_p): Remove '@' code.
      	* config/i386/i386.md (unspec): Remove UNSPEC_SP_TLS_SET and
      	UNSPEC_SP_TLS_TEST.
      	(stack_tls_protect_set_<mode>): Remove.
      	(stack_protect_set): Do not call gen_stack_tls_protect_set_<mode>.
      	(stack_tls_protect_test_<mode>): Remove.
      	(stack_protect_test): Do not call gen_stack_tls_protect_test_<mode>.
      
      From-SVN: r250932
      Uros Bizjak committed
    • Olivier Hainque <hainque@adacore.com> · 0cbfcdf4
      	PR target/81755
      	* config/vxworksae.h (VXWORKS_HAVE_TLS): Define.
      
      From-SVN: r250931
      Olivier Hainque committed
    • Makefile.in (install-mkheaders): Fix typo, where the multi_dir variable was… · 66465098
      Makefile.in (install-mkheaders): Fix typo, where the multi_dir variable was referenced as multidir in command.
      
      2017-08-07  Douglas Rupp  <rupp@adacore.com>
      
      	* Makefile.in (install-mkheaders): Fix typo, where the multi_dir
      	variable was referenced as multidir in command.
      
      From-SVN: r250930
      Doug Rupp committed
    • re PR c/69389 (bit field incompatible with OpenMP atomic update) · 56b5041c
      	PR c/69389
      	* gimplify.c (goa_stabilize_expr): Handle BIT_INSERT_EXPR and
      	BIT_FIELD_REF.
      
      	* c-omp.c (c_finish_omp_atomic): Handle atomics on bitfields.
      
      	* testsuite/libgomp.c/pr69389.c: New test.
      	* testsuite/libgomp.c++/pr69389.C: New test.
      
      From-SVN: r250929
      Jakub Jelinek committed
    • Add missing header file attribs.h to couple of targets. · 2643d17f
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* config/m32c/m32c.c: Add include of stringpool.h and attribs.h.
      	* config/rl78/rl78.c: Add include of attribs.h.
      	* config/sh/sh.c: Likewise.
      	* config/v850/v850.c: Likewise.
      
      From-SVN: r250926
      Martin Liska committed
    • Fix diff_type in expand_oacc_for char iter_type · f4c222c0
      2017-08-07  Tom de Vries  <tom@codesourcery.com>
      
      	PR middle-end/78266
      	* omp-expand.c (expand_oacc_for): Ensure diff_type is large enough.
      
      	* testsuite/libgomp.oacc-c-c++-common/vprop-2.c: New test.
      	* testsuite/libgomp.oacc-c-c++-common/vprop.c: Remove xfail.
      
      From-SVN: r250925
      Tom de Vries committed
    • Fix missing include of header file in mips.c. · 58fccd6c
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* config/mips/mips.c: Include attribs.h.
      
      From-SVN: r250924
      Martin Liska committed
    • re PR fortran/68829 (Segfaults with -Ofast due to large array on stack) · 950a884b
      2017-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/68829
      	* doc/invoke.texi: Document change in behvaior for -Ofast for
      	Fortran.
      
      2017-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/68829
      	PR fortran/81701
      	* options.c: Make -Ofast honor -fmax-stack-var-size.
      	* invoke.texi: Document change.
      
      2017-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/68829
      	PR fortran/81701
      	* gfortran.dg/o_fast_stacksize.90:  New test.
      
      From-SVN: r250923
      Thomas Koenig committed
    • * es.po: Update. · ebeeb49c
      From-SVN: r250921
      Joseph Myers committed
    • c-ada-spec.c (has_nontrivial_methods): Test for FUNCTION_DECL. · db440138
      	* c-ada-spec.c (has_nontrivial_methods): Test for FUNCTION_DECL.
      	(print_ada_methods): Likewise.
      	(print_ada_declaration): Likewise.
      
      From-SVN: r250920
      Eric Botcazou committed
    • [AArch64] Use gen_frame_mem for callee-saves · 30079dde
      The frame code uses a mixture of gen_rtx_MEM and gen_frame_mem for
      callee-saves.  Callee-saves never alias with local variables, so using
      gen_frame_mem is best.
      
          gcc/
      	* config/aarch64/aarch64.c (aarch64_pushwb_single_reg):
      	Use gen_frame_mem.
      	(aarch64_pop_regs): Likewise.
      	(aarch64_gen_load_pair): Likewise.
      	(aarch64_save_callee_saves): Likewise.
      	(aarch64_restore_callee_saves): Likewise.
      
      From-SVN: r250919
      Wilco Dijkstra committed
    • Fix unresolved in gcc.dg/pr46932.c · 6f1a16cb
      Build only if pre-increment is supported.  Given there is no config test,
      add a list of targets which have HAVE_PRE_INCREMENT set.
      
          testsuite/
      	PR middle-end/46932
      	* gcc.dg/pr46932.c: Compile on targets with pre-increment.
      
      From-SVN: r250918
      Wilco Dijkstra committed
    • Revert r250916 · 4090b652
      From-SVN: r250917
      H.J. Lu committed
    • i386: Don't use frame pointer without stack access · 079a0363
      When there is no stack access, there is no need to use frame pointer
      even if -fno-omit-frame-pointer is used.
      
      gcc/
      
      	PR target/81736
      	* config/i386/i386.c (ix86_finalize_stack_realign_flags): Renamed
      	to ...
      	(ix86_finalize_stack_frame_flags): This.  Also clear
      	frame_pointer_needed if -fno-omit-frame-pointer is used without
      	stack access.
      	(ix86_expand_prologue): Replace ix86_finalize_stack_realign_flags
      	with ix86_finalize_stack_frame_flags.
      	(ix86_expand_epilogue): Likewise.
      	(ix86_expand_split_stack_prologue): Likewise.
      
      gcc/testsuite/
      
      	PR target/81736
      	* gcc.target/i386/pr81736-1.c: New test.
      	* gcc.target/i386/pr81736-2.c: Likewise.
      	* gcc.target/i386/pr81736-3.c: Likewise.
      	* gcc.target/i386/pr81736-4.c: Likewise.
      
      From-SVN: r250916
      H.J. Lu committed
    • i386: Set priority to P_AES for Westmere · 356512c0
      The difference between Nehalem and Westmere is AES.  We should set
      priority to P_AES for Westmere, not P_PROC_SSE4_2 which is for Nehalem.
      Otherwise, we will pick Nehalem implementation on Westmere.  Tested on
      Westmere.
      
      	PR target/81743
      	* config/i386/i386.c (get_builtin_code_for_version): Set priority
      	to P_AES for Westmere.
      
      From-SVN: r250915
      H.J. Lu committed
    • Share mingw fset-stack-executable with cygwin · c8f34527
      This patch is in use by Cygwin for years, upstream to GCC.
      
      	* gcc/config/i386/mingw.opt (fset-stack-executable): Removed.
      	* gcc/config/i386/cygming.opt (fset-stack-executable): Moved
      	from mingw.opt.
      	* gcc/config/i386/cygwin.h: Define CHECK_EXECUTE_STACK_ENABLED.
      	* ligcc/config.host (*-cygwin): Include file from mingw
      	config/i386/enable-execute-stack-mingw32.c
      
      From-SVN: r250914
      Jonathan Yong committed
    • print-rtl: NOT is ~, not ! · d5e2c91a
      Slim RTL dumps print the RTL code NOT as !, but that is misleading:
      its semantics are like the C operator ~.  This fixes it.
      
      
      	* print-rtl.c (print_exp): Print NOT as "~" instead of as "!".
      
      From-SVN: r250913
      Segher Boessenkool committed
    • re PR middle-end/81737 (164.gzip in SPEC CPU 2000 failed to build) · 1653a865
      	PR middle-end/81737
      	* fold-const.c (fold_indirect_ref_1): Check type_domain.
      
      	* gcc.dg/pr81737.c: New test.
      
      From-SVN: r250912
      Marek Polacek committed
    • Canonicalize names of attributes. · 577eec56
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* attribs.h (canonicalize_attr_name): New function.
      	(cmp_attribs): Move from c-format.c and adjusted.
      	(is_attribute_p): Moved from tree.h.
      	* tree-inline.c: Add new includes.
      	* tree.c (cmp_attrib_identifiers): Use cmp_attribs.
      	(private_is_attribute_p): Remove.
      	(private_lookup_attribute): Likewise.
      	(private_lookup_attribute_by_prefix): Simplify.
      	(remove_attribute): Use is_attribute_p.
      	* tree.h: Remove removed declarations.
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* array-notation-common.c: Add new includes.
      	* c-format.c( handle_format_attribute): Canonicalize a format
      	function name.
      	* c-lex.c (c_common_has_attribute): Canonicalize name of an
      	attribute.
      	* c-pretty-print.c: Add new include.
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* parser.c (cp_parser_gnu_attribute_list): Canonicalize name of an
      	attribute.
      	(cp_parser_std_attribute): Likewise.
      	* tree.c: Add new include.
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* c-parser.c (c_parser_attributes): Canonicalize name of an
      	attribute.
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* go-gcc.cc (Gcc_backend::function): Look up for no_split_stack
      	and not __no_split_stack__.
      2017-08-07  Martin Liska  <mliska@suse.cz>
      
      	* g++.dg/cpp0x/pr65558.C: Update scanned pattern.
      	* gcc.dg/parm-impl-decl-1.c: Likewise.
      	* gcc.dg/parm-impl-decl-3.c: Likewise.
      	* gcc.dg/Wattributes-5.c: New test.
      
      From-SVN: r250911
      Martin Liska committed