class.c (type_has_constexpr_default_constructor): Make sure the caller stripped an...
[gcc.git] / gcc / cp / ChangeLog
1 2011-02-09 Jason Merrill <jason@redhat.com>
2
3 * class.c (type_has_constexpr_default_constructor): Make sure the
4 caller stripped an enclosing array.
5 * init.c (perform_member_init): Strip arrays before calling it.
6
7 PR c++/47511
8 * semantics.c (potential_constant_expression_1): Handle TEMPLATE_DECL.
9
10 2011-02-03 Dodji Seketeli <dodji@redhat.com>
11
12 PR c++/47398
13 * tree.c (cp_tree_equal)<TEMPLATE_PARM_INDEX>: Take the number of
14 template parameters in account.
15
16 2011-02-03 Nathan Froyd <froydnj@codesourcery.com>
17
18 PR c++/46890
19 * parser.c (cp_parser_class_specifier): Fix setting of
20 want_semicolon.
21
22 2011-01-31 Jakub Jelinek <jakub@redhat.com>
23
24 PR c++/47416
25 * semantics.c (build_data_member_initialization): Handle
26 STATEMENT_LIST always instead of just for CLEANUP_BODY.
27
28 2011-01-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
29
30 * g++spec.c (lang_specific_driver) [HAVE_LD_STATIC_DYNAMIC] Use
31 LD_STATIC_OPTION, LD_DYNAMIC_OPTION.
32
33 2011-01-29 Dodji Seketeli <dodji@redhat.com>
34
35 PR c++/47311
36 * cp-tree.h (fixup_template_parms): Declare.
37 * pt.c (end_template_parm_list): Do not fixup template parms here.
38 (fixup_template_parms): Remove static. Fix typo in the
39 comments. Remove useless code statement.
40 (fixup_template_parm): For a template template parameter, fixup
41 its attributes before fixing up its type.
42 * parser.c
43 (cp_parser_template_declaration_after_export): After parsing
44 template parameters fixup their types.
45
46 2011-01-26 Jakub Jelinek <jakub@redhat.com>
47
48 PR c++/47476
49 * semantics.c (potential_constant_expression_1): Handle
50 TRUTH_XOR_EXPR.
51
52 2011-01-26 Dave Korn <dave.korn.cygwin@gmail.com>
53
54 PR c++/43601
55 * semantics.c (expand_or_defer_fn_1): Handle it.
56 * decl2.c (decl_needed_p): Likewise.
57
58 2011-01-21 Jason Merrill <jason@redhat.com>
59
60 PR c++/47041
61 * semantics.c (build_constexpr_constructor_member_initializers):
62 Handle trivial copy.
63
64 2011-01-21 Jakub Jelinek <jakub@redhat.com>
65
66 PR c++/47388
67 * semantics.c (begin_for_stmt): If -fno-for-scope, don't
68 assume init must be NULL if scope is NULL.
69 (begin_range_for_stmt): Likewise.
70
71 2011-01-21 Jason Merrill <jason@redhat.com>
72
73 PR c++/46552
74 * semantics.c (cxx_eval_constant_expression): Handle OFFSET_REF.
75
76 PR c++/46977
77 * semantics.c (potential_constant_expression_1): Split out from
78 potential_constant_expression. Add want_rval parm. Handle
79 template expression forms. Don't enforce restriction on address
80 of automatic variable here. Add a couple of diagnostics that
81 had been missing.
82 (require_potential_constant_expression): New entry point.
83 (build_data_member_initialization, register_constexpr_fundef): Adjust.
84 (maybe_constant_value): Check potential_constant_expression.
85 * pt.c (fold_non_dependent_expr_sfinae): Likewise.
86 * tree.c (build_vec_init_expr): Adjust.
87
88 2011-01-19 Jakub Jelinek <jakub@redhat.com>
89
90 PR c++/47303
91 * decl2.c (finish_anon_union): Only call mangle_decl if TREE_STATIC
92 or DECL_EXTERNAL.
93
94 2011-01-17 Jason Merrill <jason@redhat.com>
95
96 PR c++/47067
97 * semantics.c (base_field_constructor_elt): New fn.
98 (cxx_eval_bare_aggregate): Use it.
99 (build_data_member_initialization): Leave COMPONENT_REF for
100 vfield inits.
101
102 2011-01-14 Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
103
104 * parser.c (cp_parser_range_for): Remove the "unused variable" warning
105 workaround.
106
107 2011-01-15 Giovanni Funchal <gafunchal@gmail.com>
108 Jonathan Wakely <jwakely.gcc@gmail.com>
109
110 PR c++/33558
111 * decl.c (grokdeclarator): Reject mutable reference members.
112
113 2011-01-14 Jason Merrill <jason@redhat.com>
114
115 PR c++/47289
116 * pt.c (coerce_template_parms): Fix error recovery.
117
118 PR c++/46903
119 * typeck2.c (check_narrowing): Only check arithmetic types.
120
121 PR c++/46688
122 * tree.c (build_vec_init_expr): Handle flexible array
123 properly.
124
125 2011-01-13 Kai Tietz <kai.tietz@onevision.com>
126
127 PR c++/47213
128 * cp-tree.h (CLASSTYPE_VISIBILITY): Use
129 TYPE_MAIN_DECL instead of TYPE_NAME.
130 (CLASSTYPE_VISIBILITY_SPECIFIED): Likewise.
131 * decl2.c (determine_visibility): Add check
132 of CLASS_TYPE_P for underlying_type.
133
134 2011-01-12 Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
135
136 * cp-tree.h (begin_for_scope): New prototype.
137 (begin_for_stmt): Update prototype.
138 (begin_range_for_stmt): Update prototype.
139 * init.c (build_vec_init): Update call to begin_for_stmt.
140 * parser.c (cp_parser_for): New.
141 (cp_parser_c_for): Add three new parameters.
142 (cp_parser_range_for): Likewise. Most parsing code removed.
143 (cp_parser_iteration_statement): Call cp_parser_for instead of
144 cp_parser_c_for and cp_parser_range_for.
145 (cp_parser_for_init_statement): Add new parameter and return type.
146 (cp_parser_block_declaration): Update call to
147 cp_parser_simple_declaration.
148 (cp_parser_simple_declaration): Add new parameter.
149 Update call to cp_parser_init_declarator.
150 (cp_parser_init_declarator): Add new parameter.
151 * pt.c (tsubst_expr): Update call to begin_for_stmt.
152 * semantics.c (begin_for_scope): New.
153 (begin_for_stmt): Add two new parameters.
154 (begin_range_for_stmt): Likewise.
155
156 2011-01-12 Nicola Pero <nicola.pero@meta-innovation.com>
157
158 * parser.c (cp_parser_objc_at_property_declaration): Improved
159 error message.
160
161 2011-01-11 Dodji Seketeli <dodji@redhat.com>
162
163 PR debug/46955
164 * cp-lang.c (get_template_innermost_arguments_folded)
165 (get_template_argument_pack_elems_folded)
166 (template_arg_needs_folding, fold_cplus_constants): New static
167 functions.
168 (LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS): Set this hook to
169 get_template_innermost_arguments_folded.
170 (LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS): Set this hook to
171 get_template_argument_pack_elems_folded.
172
173 2011-01-11 Jason Merrill <jason@redhat.com>
174
175 PR c++/46658
176 * init.c (build_new_1): Handle value-init in templates differently.
177
178 PR c++/45520
179 * tree.c (maybe_dummy_object): Check current_class_ref against
180 context, not current_class_type.
181
182 2011-01-08 Nicola Pero <nicola.pero@meta-innovation.com>
183
184 PR objc/47078
185 * parser.c (cp_parser_objc_typename): If the type is unknown, for
186 error recovery purposes behave as if it was not specified so that
187 the default type is used.
188
189 2011-01-07 Jakub Jelinek <jakub@redhat.com>
190
191 PR c++/47022
192 * pt.c (tsubst_copy_and_build): Use tsubst instead of tsubst_copy
193 for the second build_x_va_arg argument.
194
195 2011-01-05 Tom Tromey <tromey@redhat.com>
196
197 * typeck.c (cp_build_addr_expr_1): Update call to lvalue_error.
198 (lvalue_or_else): Likewise.
199
200 2011-01-01 Kai Tietz <kai.tietz@onevision.com>
201
202 PR target/38662
203 * tree.c (cxx_type_hash_eq):
204 Allow METHOD_TYPE, too.
205
206 \f
207 Copyright (C) 2011 Free Software Foundation, Inc.
208
209 Copying and distribution of this file, with or without modification,
210 are permitted in any medium without royalty provided the copyright
211 notice and this notice are preserved.