1. 22 Nov, 2017 20 commits
  2. 21 Nov, 2017 20 commits
    • C: don't suggest names that came from earlier failures (PR c/83056) · d4300cc6
      PR c/83056 reports an issue affecting trunk and gcc-7 in which
      the C frontend's implementation of lookup_name_fuzzy uses undeclared
      identifiers as suggestions when encountering subsequent undeclared
      identifiers.
      
      The fix is to filter out the names bound to error_mark_node
      in lookup_name_fuzzy.
      
      The C++ frontend is unaffected, as it already does this.
      
      gcc/c/ChangeLog:
      	PR c/83056
      	* c-decl.c (lookup_name_fuzzy): Don't suggest names that came from
      	earlier failed lookups.
      
      gcc/testsuite/ChangeLog:
      	PR c/83056
      	* gcc.dg/spellcheck-pr83056.c: New test case.
      
      From-SVN: r255038
      David Malcolm committed
    • re PR tree-optimization/82945 (add warning for passing non-strings to functions… · 6f9b7472
      re PR tree-optimization/82945 (add warning for passing non-strings to functions that expect string arguments)
      
      gcc/ChangeLog:
      
      	PR tree-optimization/82945
      	* calls.h (warn_nonstring_bound): Remove unused function.
      
      From-SVN: r255036
      Martin Sebor committed
    • PR libstdc++/48101 improve errors for invalid container specializations · 866e4d38
      	PR libstdc++/48101
      	* include/bits/allocator.h (allocator<const _Tp>)
      	(allocator<volatile _Tp>, allocator<const volatile _Tp>): Add partial
      	specializations.
      	* include/bits/forward_list.h (forward_list): Add static assertions.
      	* include/bits/hashtable.h (__cache_default): Use
      	__is_nothrow_invocable instead of __is_noexcept_hash.
      	(_Hashtable): Add static assertions.
      	* include/bits/hashtable_policy.h (__is_noexcept_hash): Remove.
      	* include/bits/stl_deque.h (deque): Add static assertions.
      	* include/bits/stl_function.h (_Identity<const _Tp>): Add partial
      	specialization.
      	* include/bits/stl_list.h (list): Add static assertions.
      	* include/bits/stl_map.h (map): Likewise.
      	* include/bits/stl_multimap.h (multimap): Likewise.
      	* include/bits/stl_multiset.h (multiset): Likewise.
      	* include/bits/stl_set.h (set): Likewise.
      	* include/bits/stl_tree.h (_Rb_tree): Likewise.
      	* include/bits/stl_vector.h (vector): Likewise.
      	* include/bits/unordered_map.h (unordered_map, unordered_multimap):
      	Use typename instead of class in template-parameter-list and remove
      	spaces.
      	* include/bits/unordered_set.h (unordered_set, unordered_multiset):
      	Likewise.
      	* testsuite/23_containers/deque/48101-2_neg.cc: New test.
      	* testsuite/23_containers/deque/48101_neg.cc: New test.
      	* testsuite/23_containers/forward_list/48101-2_neg.cc: New test.
      	* testsuite/23_containers/forward_list/48101_neg.cc: New test.
      	* testsuite/23_containers/list/48101-2_neg.cc: New test.
      	* testsuite/23_containers/list/48101_neg.cc: New test.
      	* testsuite/23_containers/map/48101-2_neg.cc: New test.
      	* testsuite/23_containers/map/48101_neg.cc: New test.
      	* testsuite/23_containers/map/operations/31440.cc: Fix comparison
      	object to have const-qualified call operator.
      	* testsuite/23_containers/multimap/48101-2_neg.cc: New test.
      	* testsuite/23_containers/multimap/48101_neg.cc: New test.
      	* testsuite/23_containers/multiset/48101-2_neg.cc: New test.
      	* testsuite/23_containers/multiset/48101_neg.cc: New test.
      	* testsuite/23_containers/set/48101-2_neg.cc: New test.
      	* testsuite/23_containers/set/48101_neg.cc: New test.
      	* testsuite/23_containers/unordered_map/48101-2_neg.cc: New test.
      	* testsuite/23_containers/unordered_map/48101_neg.cc: New test.
      	* testsuite/23_containers/unordered_multimap/48101-2_neg.cc: New test.
      	* testsuite/23_containers/unordered_multimap/48101_neg.cc: New test.
      	* testsuite/23_containers/unordered_multiset/48101-2_neg.cc: New test.
      	* testsuite/23_containers/unordered_multiset/48101_neg.cc: New test.
      	* testsuite/23_containers/unordered_set/48101-2_neg.cc: New test.
      	* testsuite/23_containers/unordered_set/48101_neg.cc: New test.
      	* testsuite/23_containers/unordered_set/instantiation_neg.cc: Adjust
      	dg-error line number.
      	* testsuite/23_containers/vector/48101-2_neg.cc: New test.
      	* testsuite/23_containers/vector/48101_neg.cc: New test.
      
      From-SVN: r255035
      Jonathan Wakely committed
    • PR tree-optimization/82945 - add warning for passing non-strings to functions… · 6a33d0ff
      PR tree-optimization/82945 - add warning for passing non-strings to functions that expect string arguments
      
      gcc/ChangeLog:
      
      	PR tree-optimization/82945
      	* builtins.c (expand_builtin_strlen): Call maybe_warn_nonstring_arg.
      	* calls.h (maybe_warn_nonstring_arg): Declare new function.
      	* calls.c (get_attr_nonstring_decl, maybe_warn_nonstring_arg): New
      	functions.
      	(initialize_argument_information): Call maybe_warn_nonstring_arg.
      	* calls.h (get_attr_nonstring_decl): Declare new function.
      	* doc/extend.texi (attribute nonstring): Update.
      	* gimple-fold.c (gimple_fold_builtin_strncpy): Call
      	get_attr_nonstring_decl and handle it.
      	* tree-ssa-strlen.c (maybe_diag_stxncpy_trunc): Same.  Improve
      	detection of nul-termination.
      	(strlen_to_stridx): Change to a pointer.
      	(handle_builtin_strlen, handle_builtin_stxncpy): Adjust.
      	(pass_strlen::execute): Same.
      
      gcc/testsuite/ChangeLog:
      
      	PR tree-optimization/82945
      	* c-c++-common/Wstringop-truncation-2.c: New test.
      	* c-c++-common/Wstringop-truncation.c: Adjust.
      	* c-c++-common/attr-nonstring-2.c: Adjust.
      	* c-c++-common/attr-nonstring-3.c: New test.
      
      From-SVN: r255031
      Martin Sebor committed
    • i386-opts.h (enum prefer_vector_width): Added new enum for the new option… · ab2c4ec8
      i386-opts.h (enum prefer_vector_width): Added new enum for the new option -mprefer-vector-width=[none|128|256|512].
      
      	* config/i386/i386-opts.h (enum prefer_vector_width): Added new enum
      	for the new option -mprefer-vector-width=[none|128|256|512].
      	* config/i386/i386.c (ix86_target_string): remove old style options
      	-mprefer-avx256 and make -mprefer-avx128 as alias.
      	(ix86_option_override_internal):  Apply defaults for the
      	-mprefer-vector-width=[128|256] option.
      	* config/i386/i386.h (TARGET_PREFER_AVX128, TARGET_PREFER_AVX256):
      	Implement macros to work with -mprefer-vector-width=.
      	* config/i386/i386.opt: Implemented option
      	-mprefer-vector-width=[none|128|256|512].
      	* doc/invoke.texi: Documentation for
      	-mprefer-vector-width=[none|128|256|512].
      
      gcc/testsuite/
      
      	* g++.dg/ext/pr57362.C (__attribute__): Test
      	prefer-vector-width=[128|256] target attribute.
      	* gcc.target/i386/avx512f-constant-float-return.c (dg-optioins):
      	Use -mprefer-vector-width=256 instead of -mprefer-avx256.
      	* gcc.target/i386/avx512f-prefer.c: Ditto.
      	* gcc.target/i386/pr82460-2.c: Ditto.
      
      From-SVN: r255030
      Sergey Shalnov committed
    • Add quotes for constexpr keyword. · 84fa214d
      2017-11-21  Martin Liska  <mliska@suse.cz>
      
      	* class.c (finalize_literal_type_property): Add quotes for
      	constexpr keyword.
      	(explain_non_literal_class): Likewise.
      	* constexpr.c (ensure_literal_type_for_constexpr_object): Likewise.
      	(is_valid_constexpr_fn): Likewise.
      	(check_constexpr_ctor_body): Likewise.
      	(register_constexpr_fundef): Likewise.
      	(explain_invalid_constexpr_fn): Likewise.
      	(cxx_eval_builtin_function_call): Likewise.
      	(cxx_eval_call_expression): Likewise.
      	(cxx_eval_loop_expr): Likewise.
      	(potential_constant_expression_1): Likewise.
      	* decl.c (check_previous_goto_1): Likewise.
      	(check_goto): Likewise.
      	(grokfndecl): Likewise.
      	(grokdeclarator): Likewise.
      	* error.c (maybe_print_constexpr_context): Likewise.
      	* method.c (process_subob_fn): Likewise.
      	(defaulted_late_check): Likewise.
      	* parser.c (cp_parser_compound_statement): Likewise.
      2017-11-21  Martin Liska  <mliska@suse.cz>
      
      	* g++.dg/cpp0x/constexpr-48089.C: Add quotes for constexpr
      	keyword; add dg-message for 'in .constexpr. expansion of '.
      	* g++.dg/cpp0x/constexpr-50060.C: Likewise.
      	* g++.dg/cpp0x/constexpr-60049.C: Likewise.
      	* g++.dg/cpp0x/constexpr-70323.C: Likewise.
      	* g++.dg/cpp0x/constexpr-70323a.C: Likewise.
      	* g++.dg/cpp0x/constexpr-cast.C: Likewise.
      	* g++.dg/cpp0x/constexpr-diag3.C: Likewise.
      	* g++.dg/cpp0x/constexpr-ex1.C: Likewise.
      	* g++.dg/cpp0x/constexpr-generated1.C: Likewise.
      	* g++.dg/cpp0x/constexpr-ice16.C: Likewise.
      	* g++.dg/cpp0x/constexpr-ice5.C: Likewise.
      	* g++.dg/cpp0x/constexpr-incomplete2.C: Likewise.
      	* g++.dg/cpp0x/constexpr-neg1.C: Likewise.
      	* g++.dg/cpp0x/constexpr-recursion.C: Likewise.
      	* g++.dg/cpp0x/constexpr-shift1.C: Likewise.
      	* g++.dg/cpp1y/constexpr-70265-1.C: Likewise.
      	* g++.dg/cpp1y/constexpr-70265-2.C: Likewise.
      	* g++.dg/cpp1y/constexpr-79655.C: Likewise.
      	* g++.dg/cpp1y/constexpr-new.C: Likewise.
      	* g++.dg/cpp1y/constexpr-return2.C: Likewise.
      	* g++.dg/cpp1y/constexpr-shift1.C: Likewise.
      	* g++.dg/cpp1y/constexpr-throw.C: Likewise.
      	* g++.dg/cpp1z/constexpr-lambda6.C: Likewise.
      	* g++.dg/ext/constexpr-vla1.C: Likewise.
      	* g++.dg/ext/constexpr-vla2.C: Likewise.
      	* g++.dg/ext/constexpr-vla3.C: Likewise.
      	* g++.dg/cpp0x/static_assert10.C: Likewise.
      	* g++.dg/cpp1y/pr63996.C: Likewise.
      	* g++.dg/cpp1y/pr68180.C: Likewise.
      	* g++.dg/cpp1y/pr77830.C: Likewise.
      	* g++.dg/ubsan/pr63956.C: Likewise.
      
      From-SVN: r255025
      Martin Liska committed
    • ppc-asm.h (f50, vs50): Fix values. · fc3605f1
      	* config/rs6000/ppc-asm.h (f50, vs50): Fix values.
      
      From-SVN: r255024
      Pat Haugen committed
    • Fix invalid XML in libstdc++ manual · b99415b7
      2017-11-21  Przemyslaw Wirkus  <przemyslaw.wirkus@arm.com>
      
      	* doc/xml/manual/using.xml (manual.intro.using.macros): Move
      	variablelist element at the end of its list.
      
      From-SVN: r255023
      Przemyslaw Wirkus committed
    • Improve -Wmaybe-uninitialized documentation · 4bd9c84c
      	* doc/invoke.texi (-Wmaybe-uninitialized): Rephrase for clarity.
      
      From-SVN: r255022
      Jonathan Wakely committed
    • New POINTER_DIFF_EXPR · 1af4ebf5
      2017-11-21  Marc Glisse  <marc.glisse@inria.fr>
      
      gcc/c/
      	* c-fold.c (c_fully_fold_internal): Handle POINTER_DIFF_EXPR.
      	* c-typeck.c (pointer_diff): Use POINTER_DIFF_EXPR.
      
      gcc/c-family/
      	* c-pretty-print.c (pp_c_additive_expression,
      	c_pretty_printer::expression): Handle POINTER_DIFF_EXPR.
      
      gcc/cp/
      	* constexpr.c (cxx_eval_constant_expression,
      	potential_constant_expression_1): Handle POINTER_DIFF_EXPR.
      	* cp-gimplify.c (cp_fold): Likewise.
      	* error.c (dump_expr): Likewise.
      	* typeck.c (pointer_diff): Use POINTER_DIFF_EXPR.
      
      gcc/
      	* doc/generic.texi: Document POINTER_DIFF_EXPR, update
      	POINTER_PLUS_EXPR.
      	* cfgexpand.c (expand_debug_expr): Handle POINTER_DIFF_EXPR.
      	* expr.c (expand_expr_real_2): Likewise.
      	* fold-const.c (const_binop, fold_addr_of_array_ref_difference,
      	fold_binary_loc): Likewise.
      	* match.pd (X-X, P+(Q-P), &D-P, (P+N)-P, P-(P+N), (P+M)-(P+N),
      	P-Q==0, -(A-B), X-Z<Y-Z, (X-Z)-(Y-Z), Z-X<Z-Y, (Z-X)-(Z-Y),
      	(A-B)+(C-A)): New transformations for POINTER_DIFF_EXPR, based on
      	MINUS_EXPR transformations.
      	* optabs-tree.c (optab_for_tree_code): Handle POINTER_DIFF_EXPR.
      	* tree-cfg.c (verify_expr, verify_gimple_assign_binary): Likewise.
      	* tree-inline.c (estimate_operator_cost): Likewise.
      	* tree-pretty-print.c (dump_generic_node, op_code_prio,
      	op_symbol_code): Likewise.
      	* tree-vect-stmts.c (vectorizable_operation): Likewise.
      	* vr-values.c (extract_range_from_binary_expr): Likewise.
      	* varasm.c (initializer_constant_valid_p_1): Likewise.
      	* tree.def: New tree code POINTER_DIFF_EXPR.
      
      From-SVN: r255021
      Marc Glisse committed
    • * config/i386/i386.md: Missing file from my previous commit. · ffb41aab
      From-SVN: r255019
      Uros Bizjak committed
    • re PR c++/83045 (-Wreturn-type regression in C++) · 826eccc6
      	PR c++/83045
      	* tree-cfg.c (pass_warn_function_return::execute): Formatting fix.
      	Also warn if seen __builtin_unreachable () call with BUILTINS_LOCATION.
      	Use LOCATION_LOCUS when comparing against UNKNOWN_LOCATION.
      
      	* c-c++-common/pr61405.c (fn0, fn1): Add return stmts.
      	* c-c++-common/Wlogical-op-2.c (fn): Likewise.
      	* g++.dg/debug/pr53466.C: Add -Wno-return-type to dg-options.
      	* g++.dg/opt/combine.C: Likewise.
      	* g++.dg/ubsan/return-3.C: Likewise.
      	* g++.dg/pr59445.C: Likewise.
      	* g++.dg/pr49847.C: Likewise.
      	* g++.dg/ipa/pr61800.C: Likewise.
      	* g++.dg/ipa/pr63470.C: Likewise.
      	* g++.dg/ipa/pr68672-1.C: Likewise.
      	* g++.dg/pr58438.C: Likewise.
      	* g++.dg/torture/pr59265.C: Likewise.
      	* g++.dg/tree-ssa/ssa-dse-2.C: Likewise.
      	* g++.old-deja/g++.eh/catch13.C: Likewise.
      	* g++.old-deja/g++.eh/crash1.C: Likewise.
      	* g++.dg/tm/pr60004.C: Expect -Wreturn-type warning.
      	* g++.dg/torture/pr55740.C: Likewise.
      	* g++.dg/torture/pr43257.C: Likewise.
      	* g++.dg/torture/pr64280.C: Likewise.
      	* g++.dg/torture/pr54684.C: Likewise.
      	* g++.dg/torture/pr56694.C: Likewise.
      	* g++.dg/torture/pr68470.C: Likewise.
      	* g++.dg/torture/pr60648.C: Likewise.
      	* g++.dg/torture/pr71281.C: Likewise.
      	* g++.dg/torture/pr52772.C: Add -Wno-return-type dg-additional-options.
      	* g++.dg/torture/pr64669.C: Likewise.
      	* g++.dg/torture/pr58369.C: Likewise.
      	* g++.dg/torture/pr33627.C: Likewise.
      	* g++.dg/torture/predcom-1.C: Add
      	#pragma GCC diagnostic ignored "-Wreturn-type".
      	* g++.dg/lto/20090221_0.C: Likewise.
      	* g++.dg/lto/20091026-1_1.C: Likewise.
      	* g++.dg/lto/pr54625-1_1.C: Likewise.
      	* g++.dg/warn/pr83045.C: New test.
      
      From-SVN: r255018
      Jakub Jelinek committed
    • i386.md (*bswap<mode>2_movbe): Add integer suffix to movbe mnemonic. · 8fccb0a6
      	* config/i386/i386.md (*bswap<mode>2_movbe): Add
      	integer suffix to movbe mnemonic.
      	(*bswaphi2_movbe): Ditto.
      	(bswaphi_lowpart): Merge with *bswaphi_lowpart_1.
      
      testsuite/ChangeLog:
      
      	* gcc.target/i386/movbe-1.c: Update scan string for movbe
      	with integer suffix.
      	* gcc.target/i386/movbe-2.c: Ditto.
      	* gcc.target/i386/movbe-3.c: Ditto.
      	* gcc.target/i386/movbe-4.c: Ditto.
      	* gcc.target/i386/movbe-5.c: Ditto.
      
      From-SVN: r255017
      Uros Bizjak committed
    • * gcc.target/i386/pr82713.c: Fix dg directive. · 40a90224
      From-SVN: r255016
      Uros Bizjak committed
    • re PR c++/83020 (('17) Class template constructor call skipped with no error… · 00709c08
      re PR c++/83020 (('17) Class template constructor call skipped with no error when substitution fails in default argument)
      
      2017-11-21  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/83020
      	* g++.dg/cpp1z/pr83020.C: New.
      
      From-SVN: r255006
      Paolo Carlini committed
    • Remove not needed xstrdup_for_dump. · 769ae3bb
      2017-11-21  Martin Liska  <mliska@suse.cz>
      
      	* tree-inline.c (expand_call_inline):
      	  Remove not needed xstrdup_for_dump.
      
      From-SVN: r255005
      Martin Liska committed
    • re PR target/82880 (gcc --help=target --help=optimizers hangs on mips) · 06988296
      	PR target/82880
      	* config/mips/frame-header-opt.c (mips_register_frame_header_opt):
      	Remove static keyword from f variable.
      
      	* gcc.dg/opts-8.c: New test.
      
      From-SVN: r255004
      Jakub Jelinek committed
    • * c-common.c (get_nonnull_operand): Use tree_to_uhwi. · 7d2f0f9b
      From-SVN: r255003
      Jakub Jelinek committed
    • re PR tree-optimization/83086 (valgrind error in gimple-ssa-store-merging.c for recent build) · aa11164a
      	PR tree-optimization/83086
      	* gimple-ssa-store-merging.c
      	(imm_store_chain_info::try_coalesce_bswap): Test this_n.base_addr
      	rather than n.base_addr.
      
      From-SVN: r255002
      Jakub Jelinek committed
    • Fix UBSAN errors in dse.c (PR rtl-optimization/82044). · 938f9248
      2017-11-21  Martin Liska  <mliska@suse.cz>
      
      	PR rtl-optimization/82044
      	PR tree-optimization/82042
      	* dse.c (check_mem_read_rtx): Check for overflow.
      
      From-SVN: r255001
      Martin Liska committed