1. 10 Apr, 2009 3 commits
    • re PR c++/28301 (ICE with broken specialization) · 72b75d03
      gcc/cp/
      
      2009-04-10  Jason Merrill  <jason@redhat.com>
      
      	PR c++/28301
      	* parser.c (cp_parser_skip_to_end_of_block_or_statement): Return
      	if we see a close brace without an open brace.
      
      gcc/testsuite/
      
      2009-04-10  H.J. Lu  <hongjiu.lu@intel.com>
      
      	PR c++/28301
      	* g++.dg/cpp0x/enum2.C: Updated.
      	* g++.dg/debug/pr22514.C: Likewise.
      	* g++.dg/parse/enum2.C: Likewise.
      	* g++.dg/parse/enum3.C: Likewise.
      	* g++.dg/template/crash79.C: Likewise.
      	* g++.old-deja/g++.jason/cond.C: Likewise.
      
      	* g++.dg/template/pr28301.C: New.
      
      From-SVN: r145936
      H.J. Lu committed
    • parser.c (cp_parser_class_specifier): Remove the unused has_trailing_semicolon. · 886b9612
      2008-04-10  H.J. Lu  <hongjiu.lu@intel.com>
      
      	* parser.c (cp_parser_class_specifier): Remove the unused
      	has_trailing_semicolon.
      
      From-SVN: r145911
      H.J. Lu committed
    • 2009-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org> · 0d246707
      	PR  c++/20118
      cp/
      	* parser.c (cp_parser_check_template_parameters): Take a
      	cp_declarator parameter.
      	(cp_parser_elaborated_type_specifier): Update to
      	cp_parser_check_template_parameters.
      	(cp_parser_class_head): Likewise.
      	(cp_parser_check_declarator_template_parameters): Likewise.
      	(cp_parser_check_template_parameters): Handle first the non-error
      	conditions. Give more accurate diagnostics if a declarator is
      	given. 
      testsuite/
      	* g++.dg/parse/pr20118.C: New.
      	* g++.dg/template/spec16.C: Update.
      
      From-SVN: r145892
      Manuel López-Ibáñez committed
  2. 08 Apr, 2009 3 commits
  3. 07 Apr, 2009 1 commit
    • re PR c++/25185 (deep typedef substitution in error message) · 6ea2bd47
      	PR c++/25185
      	* c-common.h, c-common.c: Add flag_pretty_templates.
      	* c-opts.c (c_common_handle_option): Set it.
      	* c.opt: Add -fno-pretty-templates.
      	* doc/invoke.texi (C++ Dialect Options): Likewise.
      
      	* error.c (dump_function_decl): Don't pretty-print templates
      	if -fno-pretty-templates.
      	(count_non_default_template_args): Print all args if
      	-fno-pretty-templates.
      
      From-SVN: r145697
      Jason Merrill committed
  4. 06 Apr, 2009 1 commit
  5. 05 Apr, 2009 2 commits
  6. 04 Apr, 2009 1 commit
  7. 03 Apr, 2009 1 commit
  8. 02 Apr, 2009 2 commits
    • re PR c++/25185 (deep typedef substitution in error message) · d5c8be27
              PR c++/25185
              * error.c (find_typenames, find_typenames_r): New fns.
              (dump_function_decl): Call find_typenames.
              (dump_template_bindings): Print typenames as well.
              * pt.c (tsubst): Non-static.
              * cp-tree.h: Declare it.
      
      From-SVN: r145476
      Jason Merrill committed
    • re PR c++/26693 (Access checks not performed for types in templates) · d0940d56
      gcc/ChangeLog:
      2009-04-02  Dodji Seketeli  <dodji@redhat.com>
      
          PR c++/26693
          * c-decl.c: (clone_underlying_type): Move this ...
          * c-common.c (set_underlying_type): ... here.
          Also, make sure the function properly sets TYPE_STUB_DECL() on
          the newly created typedef variant type.
          * c-common.h (is_typedef_decl, set_underlying_type): Declare ...
          * c-common.c (is_typedef_decl, set_underlying_type): ... new entry points.
      
      gcc/cp/ChangeLog:
      2009-04-02  Dodji Seketeli  <dodji@redhat.com>
      
          PR c++/26693
          * decl2.c (grokfield): when a typedef appears in a
          class, create the typedef variant type node for it.
          (save_template_attributes): Creating typedef variant type node
           here is now useless.
          * decl.c (grokdeclarator): If the typedef'ed struct/class was
          anonymous, set the proper type name to all its type variants.
          (xref_basetypes) : Fixup the variant types after setting
          TYPE_BINFO on REF.
          * name-lookup.c (pushdecl_maybe_friend): Reuse the
          set_underlying_type function to install typedef variant types.
          * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
          macro.
          (append_type_to_template_for_access_check): New entry points.
          * semantics.c (check_accessibility_of_qualified_id):
          When a typedef that is a member of a class appears in a template,
          add it to the template. It will be ...
          * class.c (finish_struct_bits): Split type variant fixup into ...
          (fixup_type_variants): A new entry point.
          * pt.c (instantiate_class_template, instantiate_template ): ... access
          checked at template instantiation time.
          (resolve_type_name_type): The type name should be the name of the
          main type variant.
          (retrieve_specialization): Specializations of template typedefs aren't
          to be looked up in DECL_TEMPLATE_INSTANTIATIONS (tmpl).
          (append_type_to_template_for_access_check): New entry point.
          (tsubst_decl): For typedefs, build the variant type from the correct
          original type.
          (get_class_bindings): Fix function comment.
          (perform_typedefs_access_check): New entry point.
      
      gcc/testsuite/ChangeLog:
      2009-04-02  Dodji Seketeli  <dodji@redhat.com>
      
          PR c++/26693
          * g++.dg/template/typedef11.C: New test.
          * g++.dg/template/typedef12.C: Likewise.
          * g++.dg/template/typedef13.C: Likewise.
          * g++.dg/template/typedef14.C: Likewise.
          * g++.dg/template/typedef15.C: Likewise.
          * g++.dg/template/typedef16.C: Likewise.
          * g++.dg/template/sfinae3.C: Compile this pedantically.
          The only errors expected should be the one saying the typedef is ill
          formed.
          * g++.old-deja/g++.pt/typename8.C: Likewise.
          * g++.dg/template/access11.C: Update this.
      
      libstdc++-v3/ChangeLog:
      2009-04-02  Dodji Seketeli  <dodji@redhat.com>
      
          * include/ext/bitmap_allocator.h: the typedefs should be made public
          if we want them to be accessible. This has been revealed by the patch
          that fixes PR c++/26693 in g++.
      
      From-SVN: r145440
      Dodji Seketeli committed
  9. 01 Apr, 2009 1 commit
  10. 31 Mar, 2009 6 commits
  11. 29 Mar, 2009 2 commits
    • re PR preprocessor/34695 (Preprocessor warning->error conversion from -Werror is silent) · 148e4216
      	PR preprocessor/34695
      
      gcc:
      	* Makefile.in (c-opts.o): Depend on c-tree.h.
      	* c-common.c: Move down include of diagnostic.h.
      	(done_lexing, c_cpp_error): New.
      	* c-common.h (done_lexing): Declare.
      	* c-decl.c (c_write_global_declarations): Don't check cpp_errors
      	(parse_in).
      	* c-opts.c: Include c-tree.h.
      	(c_common_init_options): Set preprocessor error callback.
      	(c_common_handle_option): Do not set preprocessor
      	inhibit_warnings, warnings_are_errors, warn_system_headers,
      	pedantic_errors or inhibit_warnings flags.
      	(c_common_post_options): Do not check cpp_errors (parse_in).
      	(c_common_finish): Do not output dependencies if there were
      	errors.  Do not check return value of cpp_finish.
      	* c-ppoutput.c (pp_file_change): Set input_location.
      	* c-tree.h (c_cpp_error): Declare.
      	* diagnostic.c (diagnostic_set_info_translated): Also initialize
      	override_column.
      	(diagnostic_build_prefix): Check override_column.
      	* diagnostic.h (diagnostic_info): Add override_column field.
      	(diagnostic_override_column): Define.
      
      gcc/cp:
      	* cp-tree.h (cp_cpp_error): Remove.
      	* error.c (cp_cpp_error): Remove.
      	* parser.c (cp_lexer_new_main): Set done_lexing instead of
      	client_diagnostic and error callback.
      
      gcc/fortran:
      	* cpp.c (cb_cpp_error): New.
      	(gfc_cpp_post_options): Don't set cpp_option->inhibit_warnings.
      	Don't check cpp_errors (cpp_in).
      	(gfc_cpp_init_0): Set cb->error.
      
      gcc/testsuite:
      	* gcc.dg/builtin-redefine.c, gcc.dg/cpp/redef2.c,
      	gcc.dg/cpp/redef3.c, gcc.dg/cpp/trad/redef2.c: Use dg-message
      	instead of dg-warning for "previous definition" messages.
      	* gcc.dg/cpp/Wvariadic-1.c, gcc.dg/cpp/Wvariadic-3.c: Expect
      	"warnings being treated as errors" message.
      	* gcc.dg/fltconst-1.c: Use -fshow-column.
      
      libcpp:
      	* makedepend.c: Remove.
      	* Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
      	(all, clean, TAGS_SOURCES, include): Remove makedepend handling.
      	* directives.c (cpp_errors): Remove.
      	* errors.c (print_location, _cpp_begin_message, v_message):
      	Remove.
      	(cpp_error, cpp_error_with_line): Always use error callback.
      	(cpp_error, cpp_error_with_line, cpp_errno): Return bool.
      	* include/cpplib.h (cpp_options): Remove pedantic_errors,
      	inhibit_warnings, warn_system_headers, inhibit_errors,
      	warnings_are_errors, client_diagnostic.
      	(cpp_callbacks): Add extra arguments to error callback; make it
      	return bool.
      	(cpp_finish): Return void.
      	(cpp_destroy): Remove inaccurate comment about return value.
      	(cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
      	(CPP_DL_NOTE): Define.
      	* include/line-map.h (linemap_print_containing_files): Remove.
      	* init.c (cpp_finish): Do not check for or return number of
      	errors.
      	* internal.h (cpp_reader): Remove errors field.
      	* line-map.c (linemap_print_containing_files): Remove.
      	* macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
      	about previous definition.  Only emit it if previous diagnostic
      	was emitted.
      
      From-SVN: r145263
      Joseph Myers committed
    • c-common.c (c_expand_expr, c_staticp): Remove. · 2ec5deb5
      2009-03-28  Paolo Bonzini  <bonzini@gnu.org>
      
              * c-common.c (c_expand_expr, c_staticp): Remove.
              * c-common.def (COMPOUND_LITERAL_EXPR): Delete.
              * c-common.h (emit_local_var, c_staticp, COMPOUND_LITERAL_EXPR_DECL,
              COMPOUND_LITERAL_EXPR_DECL_EXPR): Remove.
              * c-gimplify.c (gimplify_compound_literal_expr,
              optimize_compound_literals_in_ctor): Remove.
              (c_gimplify_expr): Remove COMPOUND_LITERAL_EXPR handling.
              * c-objc-common.h (LANG_HOOKS_STATICP): Remove.
              * c-semantics.c (emit_local_var): Remove.
      
              * langhooks-def.h (lhd_expand_expr): Remove.
              * langhooks.c (lhd_expand_expr): Remove.
              * langhooks.h (LANG_HOOKS_DEF): Remove LANG_HOOKS_EXPAND_EXPR.
      
              * expr.c (expand_expr_real_1): Move COMPOUND_LITERAL_EXPR
              handling from c-semantics.c; don't call into langhook.
              (expand_expr_addr_expr_1): Check that we don't get non-GENERIC trees.
              * gimplify.c (gimplify_compound_literal_expr,
              optimize_compound_literals_in_ctor): Move from c-gimplify.c.
              (gimplify_init_constructor): Call optimize_compound_literals_in_ctor.
              (gimplify_modify_expr_rhs, gimplify_expr): Handle COMPOUND_LITERAL_EXPR
              as was done in c-gimplify.c.
              * tree.c (staticp): Move COMPOUND_LITERAL_EXPR handling from c_staticp.
              * tree.h (COMPOUND_LITERAL_EXPR_DECL, COMPOUND_LITERAL_EXPR_DECL_EXPR):
              Move from c-common.h.
              * tree.def (COMPOUND_LITERAL_EXPR): Move from c-common.def.
      
      	* tree.c (staticp): Do not call langhook.
      	* langhooks.c (lhd_staticp): Delete.
      	* langhooks-def.h (lhd_staticp): Delete prototype.
      	(LANG_HOOKS_STATICP): Delete.
      	(LANG_HOOKS_INITIALIZER): Delete LANG_HOOKS_STATICP.
      
              * doc/c-tree.texi (Expression nodes): Refer to DECL_EXPRs
              instead of DECL_STMTs.
      
      cp:
      2009-03-28  Paolo Bonzini  <bonzini@gnu.org>
      
      	* cp/cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
      	* cp/cp-objcp-common.c (cxx_staticp): Remove.
      	* cp/cp-tree.h (cxx_staticp): Remove.
      
      From-SVN: r145256
      Paolo Bonzini committed
  12. 28 Mar, 2009 1 commit
    • re PR c++/39554 (-Wdisallowed-function-list fails when #including <algorithm>) · 574872ff
      	PR c++/39554
      	* opts.c (warning_disallowed_functions, warn_disallowed_functions,
      	warn_if_disallowed_function_p): Removed.
      	(common_handle_option): Don't handle OPT_Wdisallowed_function_list_.
      	* c-parser.c (c_parser_postfix_expression_after_primary): Don't call
      	warning_if_disallowed_function_p.
      	* flags.h (warn_if_disallowed_function_p,
      	warn_disallowed_functions): Removed.
      	* common.opt (Wdisallowed-function-list=): Removed.
      	* doc/invoke.texi (-Wdisallowed-function-list=): Removed.
      
      	* parser.c (cp_parser_postfix_expression): Don't call
      	warning_if_disallowed_function_p.
      
      	* gcc.dg/wdisallowed-functions-1.c: Removed.
      	* gcc.dg/wdisallowed-functions-2.c: Removed.
      	* gcc.dg/wdisallowed-functions-3.c: Removed.
      	* g++.dg/warn/Wdisallowed-functions-1.C: Removed.
      	* g++.dg/warn/Wdisallowed-functions-2.C: Removed.
      	* g++.dg/warn/Wdisallowed-functions-3.C: Removed.
      
      From-SVN: r145198
      Jakub Jelinek committed
  13. 27 Mar, 2009 6 commits
    • except.c (choose_personality_routine): Set terminate_node to abort for java exceptions. · 0387122d
      	* except.c (choose_personality_routine): Set terminate_node to abort
      	for java exceptions.
      
      From-SVN: r145140
      Jan Hubicka committed
    • re PR debug/37959 (g++ does not emit DW_AT_explicit) · 68599f33
      	PR debug/37959
      	* dwarf2out.c (dwarf_attr_name): Handle DW_AT_explicit attribute.
      	(gen_subprogram_die): When a function is explicit, generate the
      	DW_AT_explicit attribute.
      	* langhooks.h (struct lang_hooks_for_decls): Add
      	function_decl_explicit_p langhook.
      	* langhooks-def.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
      	(LANG_HOOKS_DECLS): Add LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P.
      
      	* cp-objcp-common.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
      	(cp_function_decl_explicit_p): New prototype.
      	* cp-objcp-common.c (cp_function_decl_explicit_p): New function.
      
      	* g++.dg/debug/dwarf2/explicit-constructor.C: New test.
      
      Co-Authored-By: Jakub Jelinek <jakub@redhat.com>
      
      From-SVN: r145128
      Dodji Seketeli committed
    • re PR c++/38638 (ICE superfluous 'typename') · 8ec0d73b
      gcc/cp/
      
      2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>
      
      	PR c++/38638
      	* parser.c (cp_parser_elaborated_type_specifier): If we have a
      	typename tag and don't have either a TYPE_DECL or a
      	TEMPLATE_ID_EXPR, set the type to NULL.
      
      gcc/testsuite/
      
      2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>
      
      	PR c++/38638
      	* g++.dg/template/typename17.C: New testcase.
      	* g++.dg/template/typename18.C: New testcase.
      
      From-SVN: r145107
      Andrew Pinski committed
    • re PR c++/37647 (ICE with invalid use of constructor) · 48b6cd9d
      gcc/cp/
      
      2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/37647
      	* decl.c (grokdeclarator): Reject [con|de]stuctors in a non-class
      	scope.
      
      gcc/testsuite/
      
      2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/37647
      	* g++.dg/parse/ctor9.C: New test.
      
      From-SVN: r145105
      Simon Martin committed
    • re PR c++/29727 (ICE on invalid initializer for template member) · 6a837908
      gcc/cp/
      
      2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/29727
      	* decl.c (check_array_designated_initializer): Handle error_mark_node.
      
      gcc/testsuite/
      
      2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/29727
      	* g++.dg/init/error2.C: New test.
      
      From-SVN: r145104
      Simon Martin committed
    • re PR c++/35652 (offset warning should be given in the front-end) · a5f805df
      gcc/
      
      2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
      
      	PR c++/35652
      	* builtins.h (c_strlen): Do not warn here.
      	* c-typeck.c (build_binary_op): Adjust calls to pointer_int_sum.
      	* c-common.c (pointer_int_sum): Take an explicit location.
      	Warn about offsets out of bounds.
      	* c-common.h (pointer_int_sum): Adjust declaration.
      
      gcc/cp/
      
      2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
      
      	PR c++/35652
      	* typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
      
      gcc/testsuite/
      
      2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
      
      	PR c++/35652
      	* gcc.dg/pr35652.C: New.
      	* g++.dg/warn/pr35652.C: New.
      	* gcc.dg/format/plus-1.c: Adjust message.
      
      From-SVN: r145102
      Manuel López-Ibáñez committed
  14. 26 Mar, 2009 1 commit
  15. 24 Mar, 2009 1 commit
  16. 23 Mar, 2009 4 commits
    • add PR tag · 27425fe7
      From-SVN: r145015
      Jason Merrill committed
    • re PR c/39495 (OMP parallel loop w/ unsigned index var rejected) · c5cdb03f
      	PR c/39495
      	* c-parser.c (c_parser_omp_for_loop): Call c_parser_binary_expression
      	instead of c_parser_expression_conv, if original_code isn't one of the
      	4 allowed comparison codes, fail.
      
      	* semantics.c (handle_omp_for_class_iterator): Swap cond operands and
      	code if iter is the second operand.
      	* parser.c (cp_parser_binary_expression): Add no_toplevel_fold_p
      	argument.  If it is set, don't build the toplevel expression with
      	build_x_binary_op, but build2.
      	(cp_parser_assignment_expression,  cp_parser_omp_for_incr): Adjust
      	callers.
      	(cp_parser_omp_for_cond): Don't assume the first operand of the
      	comparison must be decl.
      
      	* gcc.dg/gomp/pr39495-2.c: Remove xfails.
      
      	* testsuite/libgomp.c/loop-12.c: New test.
      	* testsuite/libgomp.c/loop-11.c: New test.
      	* testsuite/libgomp.c++/loop-11.C: New test.
      	* testsuite/libgomp.c++/loop-12.C: New test.
      	* testsuite/libgomp.c++/for-8.C: New test.
      
      From-SVN: r145014
      Jakub Jelinek committed
    • pt.c (make_fnparm_pack): Split out from... · 6afcfe0a
              * gcc/cp/pt.c (make_fnparm_pack): Split out from...
              (instantiate_decl): ...here.
              (tsubst_pack_expansion): Handle being called in a late-specified
              return type.
              * libiberty/cp-demangle.c (d_expression): Handle pack expansion.
              (d_find_pack): Handle DEMANGLE_COMPONENT_FUNCTION_PARAM.
              (d_print_subexpr): Don't wrap function parms in ().
              (d_print_comp) [DEMANGLE_COMPONENT_PACK_EXPANSION]: Handle
              not finding a pack.
      
      From-SVN: r145013
      Jason Merrill committed
    • re PR c++/39526 (-Wshadow reports shadowed declarations for parameters of unnamed temp objects) · 6ab282f6
              PR c++/39526
              * name-lookup.c (pushdecl_maybe_friend): Don't warn about shadowing
              a parm with a parm.
      
      From-SVN: r145012
      Jason Merrill committed
  17. 21 Mar, 2009 1 commit
    • re PR c++/28879 (ICE with VLA in template function) · c1165535
              PR c++/28879
              * parser.c (cp_parser_direct_declarator): In a template, wrap
              non-constant expression in NOP_EXPR with TREE_SIDE_EFFECTS set.
              * pt.c (tsubst): Preserve it in a partial instantiation.
              (dependent_type_p_r): Don't check value_dependent_expression_p.
              * decl.c (compute_array_index_type): Don't check
              value_dependent_expression_p if TREE_SIDE_EFFECTS.
      
      From-SVN: r144988
      Jason Merrill committed
  18. 20 Mar, 2009 1 commit
  19. 19 Mar, 2009 1 commit
    • re PR c/39495 (OMP parallel loop w/ unsigned index var rejected) · ea1199ee
      	PR c/39495
      	* c-omp.c (c_finish_omp_for): Allow NE_EXPR with TREE_TYPE (decl)'s
      	minimum or maximum value.
      
      	* parser.c (cp_parser_omp_for_cond): Don't check lhs if decl is NULL.
      	(cp_parser_omp_for_loop): Always use cp_parser_omp_for_cond.
      
      	* gcc.dg/gomp/pr39495-1.c: New test.
      	* gcc.dg/gomp/pr39495-2.c: New test.
      	* g++.dg/gomp/pr39495-1.C: New test.
      	* g++.dg/gomp/pr39495-2.C: New test.
      
      From-SVN: r144965
      Jakub Jelinek committed
  20. 18 Mar, 2009 1 commit
    • dse.c (struct group_info): Reorder fields for 64-bit hosts. · 8f5929e1
      	* dse.c (struct group_info): Reorder fields for 64-bit hosts.
      	* matrix-reorg.c (struct matrix_info): Likewise.
      	* tree-ssa-loop-ivopts.c (struct ivopts_data): Likewise.
      	* rtl.h (struct mem_attrs): Likewise.
      	* df.h (struct df): Likewise.
      	* tree-data-ref.h (struct data_dependence_relation): Likewise.
      	* ira-int.h (struct ira_allocno): Likewise.
      	* df-scan.c (struct df_collection_rec): Likewise.
      	* ira.c (struct equivalence): Likewise.
      	* function.c (struct temp_slot): Likewise.
      	* cfgloop.h (struct loop): Likewise.
      
      	* parser.c (struct cp_token): Reorder fields for 64-bit hosts.
      	(eof_token): Adjust.
      
      	* include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
      
      From-SVN: r144938
      Jakub Jelinek committed