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