1. 10 Oct, 2016 1 commit
  2. 09 Oct, 2016 1 commit
  3. 08 Oct, 2016 2 commits
    • Delay folding of bool conversion into COND_EXPR. · 627be19f
      gcc/c-family/
      	* c-common.c (c_common_truthvalue_conversion): Don't distribute
      	into COND_EXPR in C++.
      gcc/cp/
      	* cp-gimplify.c (cp_fold): Distribute cp_truthvalue_conversion
      	into COND_EXPR.
      
      From-SVN: r240893
      Jason Merrill committed
    • Further P0135 refinement. · 36cbfdb0
      	* call.c (build_user_type_conversion_1): Consider conversions from
      	a single element in an initializer-list.
      	(build_temp): Undo early_elide_copy change.
      	(build_over_call): Check that we don't try to copy a TARGET_EXPR
      	in C++17 mode.  Set user_conv_p here.
      	(convert_like_real): Not here.
      	(check_self_delegation): Split out from...
      	(build_special_member_call): ...here.  Handle C++17 copy elision.
      	* cvt.c (early_elide_copy): Remove.
      	(ocp_convert): Undo early_elide_copy change.
      	* except.c (build_throw): Likewise.
      	* init.c (expand_default_init): Likewise.
      	* typeck.c (cp_build_modify_expr): Likewise.
      
      From-SVN: r240889
      Jason Merrill committed
  4. 07 Oct, 2016 5 commits
    • re PR c++/64433 (Segmentation fault while compiling) · 45e2bf2e
      	cp/
      	PR c++/64433
      	DR1658, DR1611
      	* init.c (emit_mem_initializers): Don't construct vbases of
      	abstract classes.
      	(push_base_cleanups): Don't push vbase cleanups for abstract class
      	when in C++14 mode.
      	* method.c (synthethesized_method_walk): Don't walk vbases of
      	abstract classes when in C++14 mode.
      
      	testsuite/
      	PR c++/66443
      	* g++.dg/cpp0x/pr66443-cxx11.C: New.
      	* g++.dg/cpp0x/pr66443-cxx11-2.C: New.
      	* g++.dg/cpp1y/pr66443-cxx14.C: New
      	* g++.dg/cpp1y/pr66443-cxx14-2.C: New.
      	* g++.dg/cpp1y/pr66443-cxx14-3.C: New.
      
      From-SVN: r240874
      Nathan Sidwell committed
    • Implement LWG2296 helper intrinsic c-family/ · be845b04
      	Implement LWG2296 helper intrinsic
      c-family/
      	* c-common.h (enum rid): Add RID_ADDRESSOF.
      	* c-common.c (c_common_reswords): Add __builtin_addressof.
      cp/
      	* parser.c (cp_parser_postfix_expression): Handle RID_ADDRESSOF.
      	* cp-objcp-common.c (cp_common_init_ts): Handle ADDRESSOF_EXPR.
      	* constexpr.c (potential_constant_expression_1): Likewise.
      	* error.c (dump_expr): Likewise.
      	* typeck.c (cp_build_addressof): New function.
      	* cp-tree.h (cp_build_addressof): Declare.
      	* cxx-pretty-print.h (pp_cxx_addressof_expression): Declare.
      	* cp-tree.def (ADDRESSOF_EXPR): New tree code.
      	* cxx-pretty-print.c (cxx_pretty_printer::primary_expression): Handle
      	ADDRESSOF_EXPR.  Add __builtin_addressof and
      	__has_unique_object_representations into syntax in function comment.
      	(pp_cxx_addressof_expression): New function.
      	* pt.c (tsubst_copy_and_build): Handle ADDRESSOF_EXPR.
      testsuite/
      	* g++.dg/cpp0x/addressof1.C: New test.
      	* g++.dg/cpp0x/addressof2.C: New test.
      
      From-SVN: r240873
      Jakub Jelinek committed
    • re PR c++/77700 (suspicios code in cp/parser.c) · c09c4992
      2016-10-07  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              PR c++/77700
              * c-common.c (c_common_truthvalue_conversion): Warn also for
              suspicious enum values in boolean context.
      
      cp:
      2016-10-07  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              PR c++/77700
              * parser.c (cp_parser_base_specifier): Fix a warning.
      
      testsuite:
      2016-10-07  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              PR c++/77700
              * c-c++-common/Wint-in-bool-context.c: Update test.
      
      From-SVN: r240867
      Bernd Edlinger committed
    • re PR c++/69733 (-Wignored-qualifiers points to wrong const) · 8a14afd0
      c/
      	PR c++/69733
      	* c-decl.c (smallest_type_quals_location): New static function.
      	(grokdeclarator): Try to find the correct location for an ignored
      	qualifier.
      cp/
      	PR c++/69733
      	* decl.c (grokdeclarator): Try to find the correct location for an
      	ignored qualifier.
      testsuite/
      	PR c++/69733
      	* c-c++-common/pr69733.c: New test.
      	* gcc.dg/pr69733.c: New test.
      	* gcc.target/i386/pr69733.c: New test.
      
      From-SVN: r240863
      Bernd Schmidt committed
    • Fix profiled bootstrap (part 2) · 5d341f08
      	* lambda.c (maybe_add_lambda_conv_op): Set default value.
      
      From-SVN: r240856
      Martin Liska committed
  5. 06 Oct, 2016 2 commits
    • C++17 copy elision improvements. · b7558a2c
      	* call.c (build_temp, convert_like_real): Don't re-copy
      	TARGET_EXPR.  Handle packed fields.
      	(build_x_va_arg): Wrap it in a TARGET_EXPR.
      	(build_over_call): Add sanity check.
      	* cvt.c (early_elide_copy): New.
      	(ocp_convert): Use it.
      	* except.c (build_throw): Use it.
      	* init.c (get_nsdmi): Put back the TARGET_EXPR.
      	(expand_default_init): Call early_elide_copy.
      	* typeck.c (cp_build_modify_expr): Call early_elide_copy.
      
      From-SVN: r240845
      Jason Merrill committed
    • Implement P0258R2 - helper for C++17 std::has_unique_object_representations trait c-family/ · 342cfb3e
      	Implement P0258R2 - helper for C++17
      	std::has_unique_object_representations trait
      c-family/
      	* c-common.h (enum rid): Add RID_HAS_UNIQUE_OBJ_REPRESENTATIONS.
      	* c-common.c (c_common_reswords): Add
      	__has_unique_object_representations.
      cp/
      	* cp-tree.h (enum cp_trait_kind): Add
      	CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
      	(struct lang_type_class): Add unique_obj_representations
      	and unique_obj_representations_set bitfields.
      	(CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS,
      	CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET): Define.
      	(type_has_unique_obj_representations): Declare.
      	* parser.c (cp_parser_primary_expression): Handle
      	RID_HAS_UNIQUE_OBJ_REPRESENTATIONS.
      	(cp_parser_trait_expr): Likewise.  Formatting fix.
      	* semantics.c (trait_expr_value, finish_trait_expr): Handle
      	CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
      	* tree.c (type_has_unique_obj_representations): New function.
      	(record_has_unique_obj_representations): New function.
      	* cxx-pretty-print.c (pp_cxx_trait_expression): Handle
      	CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
      testsuite/
      	* g++.dg/cpp1z/has-unique-obj-representations1.C: New test.
      	* g++.dg/cpp1z/has-unique-obj-representations2.C: New test.
      
      From-SVN: r240843
      Jakub Jelinek committed
  6. 05 Oct, 2016 7 commits
  7. 04 Oct, 2016 5 commits
    • PR c++/77775 - misoptimization of PMF comparison · 2db613e5
      	* constexpr.c (cxx_eval_component_reference): Use name matching
      	for PMFs.
      
      From-SVN: r240757
      Jason Merrill committed
    • Implement P0091R2, Template argument deduction for class templates. · 76b294d4
      * parser.c (cp_parser_simple_type_specifier): Parse class placeholder.
      Use the location of the beginning of the type-specifier.
      (cp_parser_init_declarator): Parse deduction guide.
      (cp_parser_diagnose_invalid_type_name): Mention class deduction.
      (cp_parser_type_id_1): Don't accept class placeholder as template arg.
      * cp-tree.h (CLASS_PLACEHOLDER_TEMPLATE): New.
      * decl.c (grokdeclarator): Check for uninitialized auto here.
      (start_decl_1): Not here.
      (cp_finish_decl): Or here.  Don't collapse a list when doing
      class deduction.
      (grokfndecl): Check deduction guide scope and body.
      * error.c (dump_decl, dump_function_decl, dump_function_name):
      Handle deduction guides.
      * pt.c (make_template_placeholder, do_class_deduction): New.
      (build_deduction_guide, rewrite_template_parm): New.
      (dguide_name, dguide_name_p, deduction_guide_p): New.
      (do_auto_deduction): Call do_class_deduction.
      (splice_late_return_type, is_auto): Handle class placeholders.
      (template_parms_level_to_args): Split from template_parms_to_args.
      (tsubst_template_parms_level): Split from tsubst_template_parms.
      * typeck2.c (build_functional_cast): Handle class placeholder.
      
      From-SVN: r240756
      Jason Merrill committed
    • PR c++/77804 - Internal compiler error on incorrect initialization of new-d array · 8ff04ff9
      gcc/cp/ChangeLog:
      
      	PR c++/77804
      	* init.c (warn_placement_new_too_small): Avoid assuming an array type
      	has a constant size.
      
      gcc/testsuite/ChangeLog:
      
      	PR c++/77804
      	* g++.dg/warn/Wplacement-new-size-4.C: New test.
      
      From-SVN: r240754
      Martin Sebor committed
    • re PR c++/77791 (ICE on invalid C++11 code with redefined function parameter:… · f72da967
      re PR c++/77791 (ICE on invalid C++11 code with redefined function parameter: tree check: expected tree that contains ‘decl minimal’ structure, have ‘error_mark’ in cp_parser_lambda_declarator_opt, at cp/parser.c:1011)
      
      	PR c++/77791
      	* parser.c (cp_parser_lambda_declarator_opt): Only pedwarn
      	for C++11 on decls in the param_list.  Test cxx_dialect < cxx14 before
      	the loop just once.
      
      	* g++.dg/cpp0x/lambda/lambda-77791.C: New test.
      
      From-SVN: r240751
      Jakub Jelinek committed
    • extend.texi (Java Exceptions): Remove. · bfecd57c
      	* doc/extend.texi (Java Exceptions): Remove.
      	(java_interface): Remove.
      cp/
      	* cp-tree.h (enum cp_tree_index): Remove CPTI_JAVA_*,
      	CPTI_LANG_NAME_JAVA and CPTI_JCLASS.
      	(java_byte_type_node, java_short_type_node, java_int_type_node,
      	java_long_type_node, java_float_type_node, java_double_type_node,
      	java_char_type_node, java_boolean_type_node, lang_name_java,
      	jclass_node): Remove.
      	(enum languages): Remove lang_java.
      	(TYPE_FOR_JAVA): Remove.
      	(struct lang_type_class): Remove java_interface bit-field.
      	(TYPE_JAVA_INTERFACE): Remove.
      	(pragma_java_exceptions): Remove.
      	(check_java_method, build_java_class_ref): Remove prototypes.
      	* name-lookup.c (pushtag_1): Don't set TYPE_FOR_JAVA.
      	* decl2.c (acceptable_java_type, check_java_method): Remove.
      	(import_export_decl): Remove TYPE_FOR_JAVA handling.
      	(build_java_method_aliases): Remove.
      	(c_parse_final_cleanups): Don't call build_java_method_aliases.
      	(possibly_inlined_p): Don't test pragma_java_exceptions.
      	* init.c (build_new_1): Remove TYPE_FOR_JAVA handling.
      	(build_java_class_ref): Remove.
      	* pt.c (maybe_new_partial_specialization, lookup_template_class_1,
      	instantiate_class_template_1): Don't copy TYPE_FOR_JAVA.
      	* except.c (eh_type_info): Remove java type handling.
      	(decl_is_java_type, choose_personality_routine): Remove.
      	(initialize_handler_parm): Don't call choose_personality_routine.
      	(expand_start_catch_block): Don't handle java types.
      	(build_throw): Likewise.
      	* cp-lang.c (cp_eh_personality): Don't handle pragma_java_exceptions.
      	* typeck.c (structural_comptypes): Don't compare TYPE_FOR_JAVA.
      	* call.c (build_over_call): Don't handle TYPE_JAVA_INTERFACE.
      	(java_iface_lookup_fn): Remove.
      	(build_java_interface_fn_ref): Remove.
      	* tree.c (cxx_attribute_table): Remove java_interface.
      	(handle_java_interface_attribute): Remove.
      	* lex.c (pragma_java_exceptions): Remove.
      	(init_cp_pragma): Don't register GCC java_exceptions pragma.
      	(handle_pragma_java_exceptions): Remove.
      	(retrofit_lang_decl): Don't handle lang_name_java.
      	* method.c (implicitly_declare_fn): Don't handle TYPE_FOR_JAVA.
      	* error.c (language_to_string): Don't handle lang_java.
      	* decl.c (record_builtin_java_type): Remove.
      	(initialize_predefined_identifiers): Remove Java.
      	(cxx_init_decl_processing): Remove java_*_type_node.
      	(cp_finish_decl): Don't handle TYPE_FOR_JAVA.
      	(grokfndecl): Likewise.
      	(check_special_function_return_type): Likewise.
      	(grokdeclarator): Don't set TYPE_FOR_JAVA.
      	(grokparms): Don't handle TYPE_FOR_JAVA.
      	(xref_basetypes): Likewise.
      	(check_function_type): Likewise.
      	(finish_constructor_body): Likewise.
      	* mangle.c (write_builtin_type): Don't handle TYPE_FOR_JAVA
      	and java_*_type_node.
      	(write_bare_function_type): Don't handle TYPE_FOR_JAVA.
      	(write_java_integer_type_codes): Remove.
      	* class.c (add_method): Don't handle TYPE_FOR_JAVA.
      	(add_implicitly_declared_members, determine_key_method,
      	finish_struct_1): Likewise.
      	(push_lang_context): Don't handle lang_name_java.
      testsuite/
      	* g++.dg/other/java3.C: Remove.
      	* g++.dg/other/java1.C: Remove.
      	* g++.dg/other/error12.C: Remove.
      	* g++.dg/other/java2.C: Remove.
      	* g++.dg/warn/Wnvdtor.C: Remove.
      	* g++.dg/lookup/java1.C: Remove.
      	* g++.dg/lookup/java2.C: Remove.
      	* g++.dg/ext/pr34829.C: Remove.
      	* g++.dg/ext/java-3.C: Remove.
      	* g++.dg/ext/java-1.C: Remove.
      	* g++.dg/ext/java-2.C: Remove.
      	* g++.old-deja/g++.oliva/dwarf2.C: Remove.
      
      From-SVN: r240750
      Jakub Jelinek committed
  8. 03 Oct, 2016 2 commits
    • Core 903 · f41f1ceb
      	Core 903
      	* typeck.c (cp_build_binary_op): Pass original operands to
      	null_ptr_cst_p, not those after the default conversions.
      
      	* g++.dg/cpp0x/nullptr37.C: New test.
      
      From-SVN: r240707
      Marek Polacek committed
    • invoke.texi: Update -Wint-in-bool-context. · 1633d3b9
      2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * doc/invoke.texi: Update -Wint-in-bool-context.
      
      c-family:
      2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-common.c (c_common_truthvalue_conversion): Warn for suspicious
              left shift in boolean context.
      
      cp:
      2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * parser.c (cp_parser_condition): Fix a warning.
      
      testsuite:
      2016-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-c++-common/Wint-in-bool-context.c: Update test.
      
      From-SVN: r240706
      Bernd Edlinger committed
  9. 29 Sep, 2016 2 commits
    • Implement P0001R1 - C++17 removal of register storage class specifier c-family/ · a2c6e7f2
      	Implement P0001R1 - C++17 removal of register storage class specifier
      c-family/
      	* c.opt (Wregister): New warning.
      	* c-opts.c (c_common_post_options): Enable -Wregister by
      	default for C++17.
      cp/
      	* decl.c (cp_finish_decl): Diagnose register storage class
      	on vars except when used in GNU global or local register variable
      	extension.
      	(grokdeclarator): Diagnose register storage class on parameters.
      	* except.c (expand_start_catch_block): Set DECL_REGISTER only
      	after cp_finish_decl call.
      testsuite/
      	* c-c++-common/Wvarargs-2.c (foo1): Except new warning for C++17.
      	* c-c++-common/vector-subscript-2.c (vf): Expect new error for
      	C++17.
      	* c-c++-common/vector-subscript-5.c (foo): Don't use register
      	keyword if not __SSE2__.
      	* c-c++-common/Wvarargs.c (foo1, foo3): Expect new warnings for
      	C++17.
      	* g++.dg/compat/struct-layout-1_generate.c (iterative_hash): Remove
      	register keywords.
      	* g++.dg/eh/pr29166.C: Add -Wno-register option.
      	* g++.dg/warn/register-parm-1.C (erroneous_warning,
      	no_erroneous_warning): Expect new warnings for C++17.
      	* g++.dg/warn/register-var-2.C (f): Likewise.
      	* g++.dg/parse/register1.C (f): Expect new error for C++17.
      	* g++.dg/parse/linkage2.C (foo): Likewise.
      	* g++.dg/torture/pr36826.C (CoinMin, CoinMax): Avoid register
      	keyword on parameters for C++17.
      	* g++.dg/cpp1z/register1.C: New test.
      	* g++.dg/cpp1z/register2.C: New test.
      	* g++.dg/cpp1z/register3.C: New test.
      
      From-SVN: r240638
      Jakub Jelinek committed
    • rtti.c (involves_incomplete_p): Add fall through comment. · 0b4b9552
      	* rtti.c (involves_incomplete_p): Add fall through comment.
      
      	* dwarf2out.c (loc_descriptor): Add fall through comment.
      	(add_const_value_attribute): Likewise.
      
      From-SVN: r240624
      Marek Polacek committed
  10. 28 Sep, 2016 1 commit
    • re PR c++/77467 (Segmentation fault with switch statement in constexpr function) · 4b390698
      	PR c++/77467
      	* constexpr.c (enum constexpr_switch_state): New.
      	(struct constexpr_ctx): Add css_state field.
      	(label_matches): Add CTX and STMT arguments, remove I and
      	DEFAULT_LABEL.  For CASE_LABEL_EXPR assert ctx->css_state != NULL,
      	handle default labels according to css_state.
      	(cxx_eval_statement_list): Remove statement skipping, label_matches
      	and default_label handling code.
      	(cxx_eval_loop_expr): Exit after first iteration even if
      	switches (jump_target).
      	(cxx_eval_switch_expr): Set up css_state field in ctx, if default
      	label has been seen in the body, but no cases matched, evaluate
      	the body second time.
      	(cxx_eval_constant_expression): Handle stmt skipping and label_matches
      	here.  Handle PREDICT_EXPR.  For MODIFY_EXPR or INIT_EXPR, assert
      	statement is not skipped.  For COND_EXPR during skipping, don't
      	evaluate condition, just the then block and if still skipping at the
      	end also the else block.
      	(cxx_eval_outermost_constant_expr): Adjust constexpr_ctx initializer.
      	(is_sub_constant_expr): Likewise.
      
      	* g++.dg/cpp1y/constexpr-77467.C: New test.
      
      From-SVN: r240591
      Jakub Jelinek committed
  11. 27 Sep, 2016 2 commits
    • Implement P0018R3, C++17 lambda capture of *this by value as [=,*this] · 8ca33347
      	Implement P0018R3, C++17 lambda capture of *this by value as [=,*this]
      	* parser.c (cp_parser_lambda_introducer): Formatting fix.  Pass
      	true instead of false as by_reference_p to add_capture for 'this'.
      	Parse '*this' simple-capture.
      	* lambda.c (build_capture_proxy): Handle '*this' capture by value.
      	(add_capture): Adjust function comment.  For id == this_identifier,
      	treat by_reference_p as capturing '*this' by reference, i.e. 'this'
      	by value, and !by_reference_p as capturing '*this' by value.
      	(add_default_capture): For implicit 'this' capture, always pass
      	by_reference_p true rather than false.
      
      	* g++.dg/cpp1z/lambda-this1.C: New test.
      	* g++.dg/cpp1z/lambda-this2.C: New test.
      
      From-SVN: r240556
      Jakub Jelinek committed
    • re PR c++/77722 (-fsanitize=undefined doesn't give runtime error in function… · 459bcfb0
      re PR c++/77722 (-fsanitize=undefined doesn't give runtime error in function without return value, unless at least 2 instructions)
      
      	PR c++/77722
      	* cp-gimplify.c (cp_ubsan_maybe_instrument_return): Instrument also
      	functions that have just a STATEMENT_LIST instead of BIND_EXPR, or
      	BIND_EXPR with some statement rather than STATEMENT_LIST as body.
      
      	* g++.dg/ubsan/return-4.C: New test.
      	* g++.dg/ubsan/return-5.C: New test.
      	* g++.dg/ubsan/return-6.C: New test.
      
      From-SVN: r240555
      Jakub Jelinek committed
  12. 26 Sep, 2016 2 commits
  13. 24 Sep, 2016 1 commit
    • re PR c/77490 (bit-not (~) on boolean should be warned about) · 9a2300e9
      	PR c/77490
      	* c.opt (Wbool-operation): New.
      
      	* c-typeck.c (build_unary_op): Warn about bit not on expressions that
      	have boolean value.  Warn about ++/-- on booleans.
      
      	* typeck.c (cp_build_unary_op): Warn about bit not on expressions that
      	have boolean value.
      
      	* doc/invoke.texi: Document -Wbool-operation.
      
      	* c-c++-common/Wbool-operation-1.c: New test.
      	* gcc.dg/Wbool-operation-1.c: New test.
      
      From-SVN: r240462
      Marek Polacek committed
  14. 23 Sep, 2016 5 commits
    • Implement P0138R2, C++17 construction rules for enum class values · d664d76d
      	Implement P0138R2, C++17 construction rules for enum class values
      	* cp-tree.h (is_direct_enum_init): Declare.
      	* decl.c (is_direct_enum_init): New function.
      	(reshape_init): Use it.
      	* typeck.c (convert_for_assignment): Likewise.
      
      	* g++.dg/cpp1z/direct-enum-init1.C: New test.
      
      From-SVN: r240449
      Jakub Jelinek committed
    • Make-lang.in (check-c++1z): Pass RUNTESTFLAGS down to make check-g++. · 24cae8cb
      	* Make-lang.in (check-c++1z): Pass RUNTESTFLAGS down to
      	make check-g++.
      
      From-SVN: r240448
      Jakub Jelinek committed
    • sel-sched-ir.c (sel_global_bb_info, [...]): Remove unnecessary = vNULL… · 7de76362
      sel-sched-ir.c (sel_global_bb_info, [...]): Remove unnecessary = vNULL initialization of file scope vec.
      
      	* sel-sched-ir.c (sel_global_bb_info, sel_region_bb_info,
      	loop_nests, s_i_d, last_added_blocks): Remove unnecessary
      	= vNULL initialization of file scope vec.
      	* passes.c (pass_tab, enabled_pass_uid_range_tab,
      	disabled_pass_uid_range_tab): Likewise.
      	* haifa-sched.c (sched_luids, h_i_d): Likewise.
      	* tree-chkp-opt.c (check_infos): Likewise.
      	* sel-sched.c (vec_av_set, vec_temp_moveop_nops): Likewise.
      c/
      	* c-parser.c (incomplete_record_decls): Remove unnecessary
      	= vNULL initialization of file scope vec.
      cp/
      	* constexpr.c (call_stack): Remove unnecessary
      	= vNULL initialization of file scope vec.
      
      From-SVN: r240444
      Jakub Jelinek committed
    • ipa-cp.c (ipcp_store_vr_results): Avoid static local var zero. · 199d1d48
      	* ipa-cp.c (ipcp_store_vr_results): Avoid static local
      	var zero.
      	* sreal.h (sreal::min, sreal::max): Avoid static local vars,
      	construct values without normalization.
      	* tree-ssa-sccvn.c (vn_reference_lookup_3): Don't initialize
      	static local lhs_ops to vNULL.
      cp/
      	* name-lookup.c (store_bindings, store_class_bindings): Don't
      	initialize static local bindings_need_stored to vNULL.
      
      From-SVN: r240408
      Jakub Jelinek committed
    • * hsa-gen.c (hsa_op_immed::hsa_op_immed Use CONSTRUCTOR_NELTS (...) · aaa1b10f
      	instead of vec_safe_length (CONSTRUCTOR_ELTS (...)).
      	(gen_hsa_ctor_assignment): Likewise.
      	* print-tree.c (print_node): Likewise.
      	* tree-dump.c (dequeue_and_dump): Likewise.
      	* tree-sra.c (sra_modify_constructor_assign): Likewise.
      	* expr.c (store_constructor): Likewise.
      	* fold-const.c (operand_equal_p): Likewise.
      	* tree-pretty-print.c (dump_generic_node): Likewise.
      	* hsa-brig.c (hsa_op_immed::emit_to_buffer): Likewise.
      	* ipa-icf-gimple.c (func_checker::compare_operand): Likewise.
      cp/
      	* typeck2.c (process_init_constructor_record): Use
      	CONSTRUCTOR_NELTS (...) instead of
      	vec_safe_length (CONSTRUCTOR_ELTS (...)).
      	* decl.c (reshape_init_r): Likewise.
      	(check_initializer): Likewise.
      ada/
      	* gcc-interface/decl.c (gnat_to_gnu_entity): Use
      	CONSTRUCTOR_NELTS (...) instead of
      	vec_safe_length (CONSTRUCTOR_ELTS (...)).
      
      From-SVN: r240390
      Jakub Jelinek committed
  15. 22 Sep, 2016 1 commit
  16. 21 Sep, 2016 1 commit