]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-family/ChangeLog
Make std::enable_shared_from_this cope with ambiguity
[thirdparty/gcc.git] / gcc / c-family / ChangeLog
CommitLineData
adc577c5
AH
12016-06-16 Aldy Hernandez <aldyh@redhat.com>
2
3 * c.opt (Walloca): New.
4 (Walloca-larger-than=): New.
5 (Wvla-larger-than=): New.
6
8fa18c06
MP
72016-10-17 Marek Polacek <polacek@redhat.com>
8
9 * c-warn.c (find_array_ref_with_const_idx_r): Remove parameter names.
10 Return immediately when finding a match.
11 (warn_tautological_cmp): Remove a boolean variable that is no longer
12 needed.
13
b12b1915
MP
142016-10-17 Marek Polacek <polacek@redhat.com>
15
16 * c-attribs.c: New file.
17 * c-common.c: Move attributes handling to c-attribs.c.
18 (get_nonnull_operand): No longer static.
19 * c-common.h: Move the declarations from c-attribs.c to its own section.
20
2045acd9
JM
212016-10-14 Jason Merrill <jason@redhat.com>
22
23 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_aggregate_bases
24 and __cpp_deduction_guides.
25
14a2c9aa
JM
262016-10-13 Jason Merrill <jason@redhat.com>
27
28 * c-cppbuiltin.c (c_cpp_builtins): Add __cpp_inline_variables.
29
4d0cdd0c
TP
302016-10-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
31
32 * c-cppbuiltin.c: Include memmodel.h.
33 * c-opts.c: Likewise.
34 * c-pragma.c: Likewise.
35 * c-warn.c: Likewise.
36
70f6d5e1
JJ
372016-10-12 Jakub Jelinek <jakub@redhat.com>
38
39 * c.opt (Wextra): Add as C/C++/ObjC/ObjC++ option.
40 (Wimplicit-fallthrough=): Enable for these languages by -Wextra.
41 * c-opts.c (sanitize_cpp_opts): Initialize
42 cpp_opts->cpp_warn_implicit_fallthrough.
43
78f61294
MP
442016-10-11 Marek Polacek <polacek@redhat.com>
45
46 * c-common.c (warning_candidate_p): Change the return type to bool
47 and return true/false instead of 1/0.
48 (vector_mode_valid_p): Likewise.
49
038b5cc0
MP
502016-10-11 Marek Polacek <polacek@redhat.com>
51
52 * c-common.c (fold_for_warn): No longer static.
53 (bool_promoted_to_int_p): Likewise.
54 (c_common_get_narrower): Likewise.
55 (constant_expression_warning): Move to c-warn.c.
56 (constant_expression_error): Likewise.
57 (overflow_warning): Likewise.
58 (warn_logical_operator): Likewise.
59 (find_array_ref_with_const_idx_r): Likewise.
60 (warn_tautological_cmp): Likewise.
61 (expr_has_boolean_operands_p): Likewise.
62 (warn_logical_not_parentheses): Likewise.
63 (warn_if_unused_value): Likewise.
64 (strict_aliasing_warning): Likewise.
65 (sizeof_pointer_memaccess_warning): Likewise.
66 (check_main_parameter_types): Likewise.
67 (conversion_warning): Likewise.
68 (warnings_for_convert_and_check): Likewise.
69 (match_case_to_enum_1): Likewise.
70 (match_case_to_enum): Likewise.
71 (c_do_switch_warnings): Likewise.
72 (warn_for_omitted_condop): Likewise.
73 (readonly_error): Likewise.
74 (lvalue_error): Likewise.
75 (invalid_indirection_error): Likewise.
76 (warn_array_subscript_with_type_char): Likewise.
77 (warn_about_parentheses): Likewise.
78 (warn_for_unused_label): Likewise.
79 (warn_for_div_by_zero): Likewise.
80 (warn_for_memset): Likewise.
81 (warn_for_sign_compare): Likewise.
82 (do_warn_double_promotion): Likewise.
83 (do_warn_unused_parameter): Likewise.
84 (record_locally_defined_typedef): Likewise.
85 (maybe_record_typedef_use): Likewise.
86 (maybe_warn_unused_local_typedefs): Likewise.
87 (maybe_warn_bool_compare): Likewise.
88 (maybe_warn_shift_overflow): Likewise.
89 (warn_duplicated_cond_add_or_warn): Likewise.
90 (diagnose_mismatched_attributes): Likewise.
91 * c-common.h: Move the declarations from c-warn.c to its own section.
92 * c-warn.c: New file.
93
627be19f
JM
942016-10-08 Jason Merrill <jason@redhat.com>
95
96 * c-common.c (c_common_truthvalue_conversion): Don't distribute
97 into COND_EXPR in C++.
98
7bad794a
JJ
992016-10-08 Jakub Jelinek <jakub@redhat.com>
100
101 * c-lex.c (c_lex_with_flags) <case CPP_COMMENT>: For CPP_COMMENT
102 token with PREV_FALLTHROUGH, skip all following CPP_PADDING and
103 CPP_COMMENT tokens and set add_flags to PREV_FALLTHROUGH afterwards.
104
be845b04
JJ
1052016-10-07 Jakub Jelinek <jakub@redhat.com>
106
107 Implement LWG2296 helper intrinsic
108 * c-common.h (enum rid): Add RID_ADDRESSOF.
109 * c-common.c (c_common_reswords): Add __builtin_addressof.
110
c09c4992
BE
1112016-10-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
112
113 PR c++/77700
114 * c-common.c (c_common_truthvalue_conversion): Warn also for
115 suspicious enum values in boolean context.
116
342cfb3e
JJ
1172016-10-06 Jakub Jelinek <jakub@redhat.com>
118
119 Implement P0258R2 - helper for C++17
120 std::has_unique_object_representations trait
121 * c-common.h (enum rid): Add RID_HAS_UNIQUE_OBJ_REPRESENTATIONS.
122 * c-common.c (c_common_reswords): Add
123 __has_unique_object_representations.
124
2e69f143
JJ
1252016-10-05 Jakub Jelinek <jakub@redhat.com>
126
127 PR sanitizer/66343
128 * c-ubsan.c (ubsan_instrument_return): Don't call
129 initialize_sanitizer_builtins here.
130
700fff34
BE
1312016-10-05 Bernd Edlinger <bernd.edlinger@hotmail.de>
132
133 * c-common.c (c_common_truthvalue_conversion): Warn also for suspicious
134 conditional expression in boolean context when only one arm is
135 non-boolean.
136
9563bfcd
JJ
1372016-10-05 Jakub Jelinek <jakub@redhat.com>
138
04a32443
JJ
139 PR sanitizer/77823
140 * c-ubsan.c (ubsan_instrument_shift): Return NULL_TREE if type0
141 is not integral.
142
9563bfcd
JJ
143 * c-common.c (c_common_reswords): Update comment for C++11.
144
f1644724
JM
1452016-10-04 Jason Merrill <jason@redhat.com>
146
147 * c-common.c (make_tree_vector_from_ctor): New.
148 * c-common.h: Declare it.
149
5a79befb
JJ
1502016-10-04 Jakub Jelinek <jakub@redhat.com>
151
152 * c-cppbuiltin.c (c_cpp_builtins): Don't define
153 __LIBGCC_JCR_SECTION_NAME__.
154
1633d3b9
BE
1552016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
156
157 * c-common.c (c_common_truthvalue_conversion): Warn for suspicious
158 left shift in boolean context.
159
a2c6e7f2
JJ
1602016-09-29 Jakub Jelinek <jakub@redhat.com>
161
162 Implement P0001R1 - C++17 removal of register storage class specifier
163 * c.opt (Wregister): New warning.
164 * c-opts.c (c_common_post_options): Enable -Wregister by
165 default for C++17.
166
75304c87
JG
1672016-09-29 James Greenhalgh <james.greenhalgh@arm.com>
168
169 * c-opts.c (c_common_post_options): Remove special case for
170 TARGET_FLT_EVAL_METHOD_NON_DEFAULT with -fexcess-precision=standard
171 in C++.
172
bbfac6da
JJ
1732016-09-27 Jakub Jelinek <jakub@redhat.com>
174
6e39060a
JJ
175 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_capture_star_this for
176 -std=c++1z.
177
bbfac6da
JJ
178 * c-ada-spec.c (print_ada_declaration): Remove break after return.
179
e73cf9a2
TP
1802016-09-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
181
182 * c-common.c: Include memmodel.h.
183
c6147dc4
MP
1842016-09-26 Marek Polacek <polacek@redhat.com>
185
186 * c-lex.c (c_common_has_attribute): Handle attribute fallthrough.
187
81fea426
MP
1882016-09-26 Marek Polacek <polacek@redhat.com>
189
190 PR c/7652
191 * c-common.c (c_common_attribute_table): Add fallthrough attribute.
192 (handle_fallthrough_attribute): New function.
193 (attribute_fallthrough_p): New function.
194 * c-common.h (attribute_fallthrough_p): Declare.
195
9a2300e9
MP
1962016-09-24 Marek Polacek <polacek@redhat.com>
197
198 PR c/77490
199 * c.opt (Wbool-operation): New.
200
a09e9e35
BE
2012016-09-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
202
203 * c-common.c (c_common_truthvalue_conversion): Inhibit
204 Wint-in-bool-context warning with from_macro_definition_at.
205 Mention the expression will always evaluate to true.
206
d43b4ccc
MS
2072016-09-21 Martin Sebor <msebor@redhat.com>
208
209 PR bootstrap/77676
210 * c.opt (fprintf-return-value): Temporarily initialize to zero
211 to unblock bootstrap failures.
212
2e1c20b1
JJ
2132016-09-21 Jakub Jelinek <jakub@redhat.com>
214
215 PR c++/77651
216 * c.opt (Waligned-new=): Add RejectNegative.
217 (faligned-new=): Likewise. Spelling fix - change
218 aligned_new_threshhold to aligned_new_threshold.
219 * c-cppbuiltin.c (c_cpp_builtins): Change aligned_new_threshhold
220 to aligned_new_threshold.
221
88d0c3f0
MS
2222016-09-20 Martin Sebor <msebor@redhat.com>
223
224 PR middle-end/49905
225 * c.opt: Add -Wformat-length and -fprintf-return-value.
226
144a96e4
BE
2272016-09-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
228
229 PR c++/77434
230 * c.opt (Wint-in-bool-context): New warning.
231 * c-common.c (c_common_truthvalue_conversion): Warn on integer
232 constants in boolean context.
233
63012d9a
JM
2342016-09-19 Joseph Myers <joseph@codesourcery.com>
235
236 * c-common.c (max_align_t_align): Also consider alignment of
237 float128_type_node.
238
931388ce
JM
2392016-09-15 Jason Merrill <jason@redhat.com>
240
241 * c-common.c (check_cxx_fundamental_alignment_constraints): Check
242 DECL_EXTERNAL.
243
38711381
JM
2442016-09-14 Jason Merrill <jason@redhat.com>
245
246 * c-common.c (check_cxx_fundamental_alignment_constraints): Don't
247 limit FIELD_DECL, either.
248
e51fbec3
MP
2492016-09-14 Marek Polacek <polacek@redhat.com>
250
251 * c-common.c (c_common_truthvalue_conversion): Use false instead of 0.
252 * c-common.h (build_unary_op): Change nonconvert parameter type to bool.
253 * c-omp.c (c_finish_omp_atomic): Use false instead of 0.
254
254830ba
DM
2552016-09-13 David Malcolm <dmalcolm@redhat.com>
256
257 * c-common.c (warn_logical_not_parentheses): Replace
258 rich_location::add_fixit_insert calls with add_fixit_insert_before
259 and add_fixit_insert_after, eliminating the "next_loc" calculation.
260
42763690
JM
2612016-09-13 Jason Merrill <jason@redhat.com>
262 Tom de Vries <tom@codesourcery.com>
263
264 PR c++/77427
265 * c-common.c (set_underlying_type): Don't treat array as builtin type.
266
9453eee9
JM
2672016-09-13 Jason Merrill <jason@redhat.com>
268
269 * c-common.c (check_cxx_fundamental_alignment_constraints): Don't
270 limit types at all.
271
e96809e3
JM
2722016-09-12 Jason Merrill <jason@redhat.com>
273
274 * c-common.c (check_cxx_fundamental_alignment_constraints): Fix
275 bit/byte confusion, allow large alignment for types.
276
54dcdb88
BE
2772016-09-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
278
279 PR c++/77496
280 * c-common.c (warn_for_omitted_condop): Also warn for boolean data.
281
d1463eb9
DM
2822016-09-12 David Malcolm <dmalcolm@redhat.com>
283
284 PR c/72858
285 * c-format.c (argument_parser::check_argument_type): Add params
286 "type_start" and "conversion_char". Use the former to generate
287 offset_to_type_start and pass it and conversion_char to
288 check_format_types.
289 (check_format_info_main): Capture the start of the type
290 information as "type_start", and pass it an format_char
291 to arg_parser.check_argument_type.
292 (check_format_types): Provide an example in the leading comment.
293 Add params "offset_to_type_start" and "conversion_char"; pass
294 them to format_type_warning calls.
295 (test_get_modifier_for_format_len): Likewise.
296 (matching_type_p): New function.
297 (get_format_for_type): Add param "conversion_char" and move
298 implementation into...
299 (get_format_for_type_1): ...new function, called twice.
300 Use new function matching_type_p rather than checking for
301 TYPE_CANONICAL equality.
302 (get_corrected_substring): New function.
303 (format_type_warning): Provide an example in the leading comment.
304 Add params "offset_to_type_start" and "conversion_char". Replace
305 call to get_format_for_type with call to get_corrected_substring
306 and move rejection of hints for widths/precisions there.
307 (assert_format_for_type_streq): Add param "conversion_char".
308 (ASSERT_FORMAT_FOR_TYPE_STREQ): Add param CONVERSION_CHAR.
309 (test_get_format_for_type_printf): Add conversion chars to the
310 tests, adding coverage for various combinations of integer
311 vs double conversions, and for preserving octal and hexadecimal
312 conversions.
313 (test_get_format_for_type_scanf): Add conversion chars to the
314 tests.
315
5b28efbb
TV
3162016-09-10 Tom de Vries <tom@codesourcery.com>
317
318 PR C/71602
319 * c-common.c (build_va_arg): Handle more strict
320 targetm.canonical_va_list_type. Replace first argument type error with
321 assert.
322
3f0177e7
MS
3232016-09-09 Martin Sebor <msebor@redhat.com>
324
325 PR c/77520
326 PR c/77521
327 * c-format.c (argument_parser::find_format_char_info): Use %qc
328 format directive unconditionally.
329
af63ba4b
JM
3302016-09-09 Jason Merrill <jason@redhat.com>
331
332 Implement C++17 new of over-aligned types.
333 * c.opt: Add -faligned-new and -Waligned-new.
334 * c-common.c (max_align_t_align): Split out from...
335 (cxx_fundamental_alignment_p): ...here.
336 * c-common.h: Declare it.
337 * c-cppbuiltin.c (c_cpp_builtins): Handle aligned new.
338
c65248cb
JM
3392016-09-09 Joseph Myers <joseph@codesourcery.com>
340
341 * c-cppbuiltin.c (builtin_define_type_width): New function.
342 (builtin_define_stdint_macros, c_cpp_builtins): Define type width
343 macros.
344
e5106e27
DM
3452016-09-07 David Malcolm <dmalcolm@redhat.com>
346
347 * c-common.c (get_cpp_ttype_from_string_type): Handle being passed
348 a POINTER_TYPE.
349 (substring_loc::get_location): Move to substring-locations.c,
350 keeping implementation as...
351 (c_get_substring_location): New function, from the above, reworked
352 to use accessors rather than member lookup.
353 * c-common.h (class substring_loc): Move to substring-locations.h,
354 replacing with a forward decl.
355 (c_get_substring_location): New decl.
356 * c-format.c: Include "substring-locations.h".
357 (format_warning_va): Move to substring-locations.c.
358 (format_warning_at_substring): Likewise.
359
a42e7952
MS
3602016-09-06 Martin Sebor <msebor@redhat.com>
361
362 PR c/77336
363 * c-format.c (check_function_format): Avoid issuing warnings for
364 functions unless they call format functions with non-constant
365 format strings.
366
b772a565
RB
3672016-09-06 Richard Biener <rguenther@suse.de>
368
369 PR c/77450
370 * c-common.c (c_common_mark_addressable_vec): Handle
371 COMPOUND_LITERAL_EXPR.
372
25ff5dd3
MP
3732016-09-05 Marek Polacek <polacek@redhat.com>
374
375 PR c/77423
376 * c-common.c (bool_promoted_to_int_p): New function.
377 (expr_has_boolean_operands_p): New function.
378 (warn_logical_not_parentheses): Return if expr_has_boolean_operands_p.
379 (maybe_warn_bool_compare): Use bool_promoted_to_int_p.
380
21234eb5
TV
3812016-09-04 Tom de Vries <tom@codesourcery.com>
382
383 revert:
384 2016-08-29 Tom de Vries <tom@codesourcery.com>
385
386 * c-common.c (build_va_arg): Replace first argument type error
387 with assert.
388
9dc5773f
JJ
3892016-09-02 Jakub Jelinek <jakub@redhat.com>
390
391 PR c/65467
392 * c-omp.c (c_finish_omp_atomic): Reject _Atomic qualified expressions.
393 (c_finish_omp_for): Reject _Atomic qualified iterators.
394
3952016-09-01 Martin Sebor <msebor@redhat.com>
3d7b83b6
MS
396
397 * c-ada-spec.c (dump_ada_function_declaration): Increase buffer
398 size to guarantee it fits the output of the formatted function
399 regardless of its arguments.
400
295844f6
MP
4012016-09-01 Marek Polacek <polacek@redhat.com>
402
403 PR c/7652
404 * c-common.c (resolve_overloaded_builtin): Fix formatting. Add
405 FALLTHRU comments.
406
3d06b6f2
MP
4072016-08-29 Marek Polacek <polacek@redhat.com>
408
409 PR c/77292
410 * c-common.c (warn_logical_not_parentheses): Don't warn for
411 a comparison or a logical operator.
412
34cedad5
TV
4132016-08-29 Tom de Vries <tom@codesourcery.com>
414
415 * c-common.c (build_va_arg): Fix type comparison assert.
416
f162d717
TV
4172016-08-29 Tom de Vries <tom@codesourcery.com>
418
419 * c-common.c (build_va_arg): Replace first argument type error
420 with assert.
421
ba9bbd6f
TV
4222016-08-29 Tom de Vries <tom@codesourcery.com>
423
424 PR c/77398
425 * c-common.c (build_va_arg): Add first argument error. Build va_arg
426 with error_mark_node as va_list instead of with illegal va_list.
427
ebef225f
MP
4282016-08-25 Marek Polacek <polacek@redhat.com>
429 David Malcolm <dmalcolm@redhat.com>
430
431 * c-common.c (warn_logical_not_parentheses): Print fixit hints.
432 * c-common.h (warn_logical_not_parentheses): Update declaration.
433
b00e6e75
MP
4342016-08-22 Marek Polacek <polacek@redhat.com>
435
436 PR c++/77321
437 * c-common.c (warn_for_memset): Check type for null.
438
6dc198e3
JM
4392016-08-22 Joseph Myers <joseph@codesourcery.com>
440
441 * c-family/c-cppbuiltin.c (c_cpp_builtins): Check _FloatN and
442 _FloatNx types for suffixes for built-in functions.
443
c65699ef
JM
4442016-08-19 Joseph Myers <joseph@codesourcery.com>
445
446 PR c/32187
447 * c-common.h (RID_FLOAT16, RID_FLOATN_NX_FIRST, RID_FLOAT32)
448 (RID_FLOAT64, RID_FLOAT128, RID_FLOAT32X, RID_FLOAT64X)
449 (RID_FLOAT128X): New enum rid values.
450 (CASE_RID_FLOATN_NX): New macro.
451 * c-common.c (c_common_reswords): Add _FloatN and _FloatNx
452 keywords.
453 (c_common_type_for_mode): Check for _FloatN and _FloatNx and
454 corresponding complex types.
455 (c_common_nodes_and_builtins): For non-C++, register _FloatN and
456 _FloatNx and corresponding complex types.
457 (keyword_begins_type_specifier): Use CASE_RID_FLOATN_NX.
458 * c-cppbuiltin.c (builtin_define_float_constants): Check _FloatN
459 and _FloatNx types for the widest type for determining
460 DECIMAL_DIG. Define __LDBL_DECIMAL_DIG__ as well as
461 __DECIMAL_DIG__ for long double. Handle FMA_SUFFIX being NULL.
462 (c_cpp_builtins): Call builtin_define_float_constants for _FloatN
463 and _FloatNx types.
464 * c-lex.c (interpret_float): Handle _FloatN and _FloatNx
465 constants.
466 * c-pretty-print.c (pp_c_floating_constant): Handle _FloatN and
467 _FloatNx types.
468
cc015f3a
DM
4692016-08-18 David Malcolm <dmalcolm@redhat.com>
470
471 * c-opts.c (c_diagnostic_finalizer): Update for change to
472 diagnostic_show_locus.
473
cb18fd07
DM
4742016-08-18 David Malcolm <dmalcolm@redhat.com>
475
476 * c-common.c: Include "spellcheck.h".
477 (cb_get_suggestion): New function.
478 * c-common.h (cb_get_suggestion): New decl.
479 * c-lex.c (init_c_lex): Initialize cb->get_suggestion to
480 cb_get_suggestion.
481
a76989dc
MP
4822016-08-18 Marek Polacek <polacek@redhat.com>
483
484 PR c/71514
485 * c-common.c (get_atomic_generic_size): Disallow pointer-to-function
486 and pointer-to-VLA.
487
65e736c0
DM
4882016-08-16 David Malcolm <dmalcolm@redhat.com>
489
490 PR c/72857
491 * c-common.c (substring_loc::get_range): Rename to...
492 (substring_loc::get_location): ...this, converting param from a
493 source_range * to a location_t *. Call
494 get_source_location_for_substring rather than
495 get_source_range_for_substring, and pass in m_caret_idx.
496 * c-common.h (substring_loc::substring_loc): Add param "caret_idx".
497 (substring_loc::get_range): Replace with...
498 (substring_loc::get_location): ...this.
499 (substring_loc::set_caret_index): New method.
500 (substring_loc): Add field m_caret_idx.
501 * c-format.c (format_warning_va): Update for above changes.
502 Rename local "substring_loc" to "fmt_substring_loc" to avoid
503 clashing with type name.
504 (format_warning_at_char): Add caret_idx param to substring_loc ctor.
505 (check_argument_type): Likewise.
506 (format_type_warning): Rename param "fmt_loc" to "whole_fmt_loc"
507 Use a copy when emitting warnings, setting the caret index from TYPE.
508
7e1dde14
EB
5092016-08-16 Eric Botcazou <ebotcazou@adacore.com>
510 Arnaud Charlet <charlet@adacore.com>
511
512 * c-ada-spec.c (dump_number): New function.
513 (handle_escape_character): Likewise.
514 (print_ada_macros): Add handling of constant integers and strings.
515
191816a3
MP
5162016-08-12 Marek Polacek <polacek@redhat.com>
517
518 PR c/7652
519 * c-common.c (scalar_to_vector): Adjust fall through comment.
520 * c-opts.c (c_common_handle_option): Likewise.
521 * c-pragma.c (handle_pragma_pack): Add FALLTHRU.
522 * c-pretty-print.c (c_pretty_printer::postfix_expression): Adjust
523 fall through comment.
524 * cilk.c (extract_free_variables): Add FALLTHRU.
525
452df4a4
JM
5262016-08-10 Jason Merrill <jason@redhat.com>
527
528 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_if_constexpr.
529
f3365c12
JM
5302016-08-09 Jason Merrill <jason@redhat.com>
531
532 * c-common.c (c_common_attribute_table): vector_size affects type
533 identity.
534
f0bc3323
MP
5352016-08-09 Marek Polacek <polacek@redhat.com>
536
537 PR c/7652
538 * c-ada-spec.c (dump_generic_ada_node): Add return.
539
98e5a19a
JM
5402016-08-09 Jason Merrill <jason@redhat.com>
541
542 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_constexpr for
543 C++17 constexpr lambdas.
544
895aa8e1
DM
5452016-08-08 David Malcolm <dmalcolm@redhat.com>
546
547 PR c/64955
548 * c-common.h (selftest::c_format_c_tests): New declaration.
549 (selftest::run_c_tests): New declaration.
550 * c-format.c: Include "selftest.h.
551 (format_warning_va): Add param "corrected_substring" and use
552 it to add a replacement fix-it hint.
553 (format_warning_at_substring): Likewise.
554 (format_warning_at_char): Update for new param of
555 format_warning_va.
556 (argument_parser::check_argument_type): Pass "fki" to
557 check_format_types.
558 (check_format_types): Add param "fki" and pass it to
559 format_type_warning.
560 (deref_n_times): New function.
561 (get_modifier_for_format_len): New function.
562 (selftest::test_get_modifier_for_format_len): New function.
563 (get_format_for_type): New function.
564 (format_type_warning): Add param "fki" and use it to attempt
565 to provide hints for argument types when calling
566 format_warning_at_substring.
567 (selftest::get_info): New function.
568 (selftest::assert_format_for_type_streq): New function.
569 (ASSERT_FORMAT_FOR_TYPE_STREQ): New macro.
570 (selftest::test_get_format_for_type_printf): New function.
571 (selftest::test_get_format_for_type_scanf): New function.
572 (selftest::c_format_c_tests): New function.
573
e52ed3fe
DM
5742016-08-08 David Malcolm <dmalcolm@redhat.com>
575
576 PR c/52952
577 * c-format.c: Include "diagnostic.h".
578 (location_column_from_byte_offset): Delete.
579 (location_from_offset): Delete.
580 (format_warning_va): New function.
581 (format_warning_at_substring): New function.
582 (format_warning_at_char): New function.
583 (check_format_arg): Capture location of format_tree and pass to
584 check_format_info_main.
585 (argument_parser): Add fields "start_of_this_format" and
586 "format_string_cst".
587 (flag_chars_t::validate): Add param "format_string_cst". Convert
588 warning_at call using location_from_offset to call to
589 format_warning_at_char.
590 (argument_parser::argument_parser): Add param "format_string_cst_"
591 and use use it to initialize field "format_string_cst".
592 Initialize new field "start_of_this_format".
593 (argument_parser::read_format_flags): Convert warning_at call
594 using location_from_offset to a call to format_warning_at_char.
595 (argument_parser::read_any_format_left_precision): Likewise.
596 (argument_parser::read_any_format_precision): Likewise.
597 (argument_parser::read_any_other_modifier): Likewise.
598 (argument_parser::find_format_char_info): Likewise, in three places.
599 (argument_parser::parse_any_scan_set): Likewise, in one place.
600 (argument_parser::handle_conversions): Likewise, in two places.
601 (argument_parser::check_argument_type): Add param "fmt_param_loc"
602 and use it to make a substring_loc. Pass the latter to
603 check_format_types.
604 (check_format_info_main): Add params "fmt_param_loc" and
605 "format_string_cst". Convert warning_at calls using
606 location_from_offset to calls to format_warning_at_char. Pass the
607 new params to the arg_parser ctor. Pass "format_string_cst" to
608 flag_chars.validate. Pass "fmt_param_loc" to
609 arg_parser.check_argument_type.
610 (check_format_types): Convert first param from a location_t
611 to a const substring_loc & and rename to "fmt_loc". Attempt
612 to extract the range of the relevant parameter and pass it
613 to format_type_warning.
614 (format_type_warning): Convert first param from a location_t
615 to a const substring_loc & and rename to "fmt_loc". Add
616 params "param_range" and "type". Replace calls to warning_at
617 with calls to format_warning_at_substring.
618
1c4d457e
DM
6192016-08-08 David Malcolm <dmalcolm@redhat.com>
620
621 * c-format.c (class flag_chars_t): New class.
622 (struct length_modifier): New struct.
623 (class argument_parser): New class.
624 (flag_chars_t::flag_chars_t): New ctor.
625 (flag_chars_t::has_char_p): New method.
626 (flag_chars_t::add_char): New method.
627 (flag_chars_t::validate): New method.
628 (flag_chars_t::get_alloc_flag): New method.
629 (flag_chars_t::assignment_suppression_p): New method.
630 (argument_parser::argument_parser): New ctor.
631 (argument_parser::read_any_dollar): New method.
632 (argument_parser::read_format_flags): New method.
633 (argument_parser::read_any_format_width): New method.
634 (argument_parser::read_any_format_left_precision): New method.
635 (argument_parser::read_any_format_precision): New method.
636 (argument_parser::handle_alloc_chars): New method.
637 (argument_parser::read_any_length_modifier): New method.
638 (argument_parser::read_any_other_modifier): New method.
639 (argument_parser::find_format_char_info): New method.
640 (argument_parser::validate_flag_pairs): New method.
641 (argument_parser::give_y2k_warnings): New method.
642 (argument_parser::parse_any_scan_set): New method.
643 (argument_parser::handle_conversions): New method.
644 (argument_parser::check_argument_type): New method.
645 (check_format_info_main): Introduce classes argument_parser
646 and flag_chars_t, moving the code within the loop into methods
647 of these classes. Make various locals "const".
648
88fa5555
DM
6492016-08-05 David Malcolm <dmalcolm@redhat.com>
650
651 * c-common.c: Include "substring-locations.h".
652 (get_cpp_ttype_from_string_type): New function.
653 (g_string_concat_db): New global.
654 (substring_loc::get_range): New method.
655 * c-common.h (g_string_concat_db): New declaration.
656 (class substring_loc): New class.
657 * c-lex.c (lex_string): When concatenating strings, capture the
658 locations of all tokens using a new obstack, and record the
659 concatenation locations within g_string_concat_db.
660 * c-opts.c (c_common_init_options): Construct g_string_concat_db
661 on the ggc-heap.
662
78169471
MP
6632016-07-29 Marek Polacek <polacek@redhat.com>
664
638fc14f
MP
665 PR c/71926
666 * c-common.c (c_common_truthvalue_conversion): Use LOCATION for the
667 parentheses warning.
668
78169471
MP
669 PR c/71574
670 * c-common.c (handle_alloc_align_attribute): Also check FUNCTION_DECL.
671
1225d6b1
ML
6722016-07-28 Martin Liska <mliska@suse.cz>
673
674 PR gcov-profile/68025
675 * c-common.c (handle_no_profile_instrument_function_attribute):
676
ec1e2a40
BE
6772016-07-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
678
679 * c-common.c (check_user_alignment): Use LOG2_BITS_PER_UNIT instead of
680 BITS_PER_UNIT_LOG.
681
5ec2cd9f
JM
6822016-07-25 Jason Merrill <jason@redhat.com>
683
684 PR c++/65970
685 * c.opt (fconstexpr-loop-limit): New.
686
9dc5773f 6872016-07-22 Martin Sebor <msebor@redhat.com>
2e6b45af
MS
688
689 PR c++/71675
690 * c-common.c (resolve_overloaded_builtin): Avoid converting
691 __atomic_compare_exchange_n return type to that of what its
692 first argument points to.
693
e3fe09c1
UB
6942016-07-22 Uros Bizjak <ubizjak@gmail.com>
695
696 * c-common.c: Use HOST_WIDE_INT_M1U instead of
697 ~(unsigned HOST_WIDE_INT) 0.
698
bc91c436
ML
6992016-07-22 Martin Liska <mliska@suse.cz>
700
701 PR gcov-profile/69028
702 PR gcov-profile/62047
703 * cilk.c (create_cilk_helper_decl): Set location of a new decl
704 to the current_function_decl.
705
451dcc66
JM
7062016-07-21 Jason Merrill <jason@redhat.com>
707
708 PR c++/65168
709 * c-common.c (c_common_truthvalue_conversion): Check
710 c_inhibit_evaluation_warnings for warning about address of
711 reference.
712
de6a69ee
DM
7132016-07-20 David Malcolm <dmalcolm@redhat.com>
714
715 * c-common.h (lookup_name_fuzzy): Convert return type from tree to
716 const char *.
717
d022c55a
JM
7182016-07-15 Jason Merrill <jason@redhat.com>
719
720 * c-opts.c (c_common_post_options): Update -fabi-version default to 11.
721
ddbbcb19
JJ
7222016-07-15 Jakub Jelinek <jakub@redhat.com>
723
724 PR c/71858
725 * c-common.h (enum lookup_name_fuzzy_kind): Add
726 FUZZY_LOOKUP_FUNCTION_NAME.
727
d0cf395a
JM
7282016-07-08 Jason Merrill <jason@redhat.com>
729
730 P0145: Refining Expression Order for C++.
731 * c.opts (-fargs-in-order): Rename to -fstrong-eval-order.
732 * c-opts.c: Adjust.
733
98d44e93
MT
7342016-07-05 Markus Trippelsdorf <markus@trippelsdorf.de>
735
736 PR c++/71214
737 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_rvalue_references.
738
f9d8d994
TS
7392016-06-29 Thomas Schwinge <thomas@codesourcery.com>
740
741 * c-pragma.h (enum pragma_kind): Rename
742 PRAGMA_OMP_DECLARE_REDUCTION to PRAGMA_OMP_DECLARE. Adjust all
743 users.
744
4aa83879
RB
7452016-06-29 Richard Biener <rguenther@suse.de>
746
747 PR middle-end/71002
748 * c-common.c (c_common_get_alias_set): Remove union type punning case.
749
a25bd9e6
JM
7502016-06-24 Jason Merrill <jason@redhat.com>
751
752 P0145R2: Refining Expression Order for C++.
753 * c-common.c (verify_tree) [COMPOUND_EXPR]: Fix handling on LHS of
754 MODIFY_EXPR.
755
a86451b9
JJ
7562016-06-24 Jakub Jelinek <jakub@redhat.com>
757
758 * c-common.c (check_builtin_function_arguments): Require last
759 argument of BUILT_IN_*_OVERFLOW_P to have INTEGER_TYPE type.
760 Adjust wording of diagnostics for BUILT_IN_*_OVERLFLOW
761 if the last argument is pointer to enumerated or boolean type.
762
1a4f11c8
DM
7632016-06-22 David Malcolm <dmalcolm@redhat.com>
764
765 PR c/70339
766 * c-common.h (enum lookup_name_fuzzy_kind): New enum.
767 (lookup_name_fuzzy): New prototype.
768
fe55692c
JDA
7692016-06-21 John David Anglin <danglin@gcc.gnu.org>
770
771 * c-common.c (get_source_date_epoch): Use int64_t instead of long long.
772
4eb24e01
JM
7732016-06-14 Jason Merrill <jason@redhat.com>
774
775 P0145R2: Refining Expression Order for C++.
776 * c.opt (fargs-in-order): New.
777 * c-opts.c (c_common_post_options): Adjust flag_args_in_order.
778
ef7cf206
JJ
7792016-06-13 Jakub Jelinek <jakub@redhat.com>
780
0dda258b
JJ
781 PR sanitizer/71498
782 * c-gimplify.c (ubsan_walk_array_refs_r): Set *walk_subtrees = 0 on
783 all BIND_EXPRs, and on all BIND_EXPRs recurse also on BIND_EXPR_BODY.
784
ef7cf206
JJ
785 PR preprocessor/71183
786 * c-ppoutput.c (init_pp_output): Set cb->get_source_date_epoch
787 to cb_get_source_date_epoch.
788
50b15873
JJ
7892016-06-10 Jakub Jelinek <jakub@redhat.com>
790
791 PR c/68657
792 * c.opt (Wpsabi): Add Warning flag.
793
4d926e34
MS
7942016-06-10 Martin Sebor <msebor@redhat.com>
795
796 PR c/71392
797 * gcc/c-family/c-common.c (handle_nonnull_attribute): Accept
798 the nonnull attribute in type-generic builtins.
799
e01b4e16
MS
8002016-06-09 Martin Sebor <msebor@redhat.com>
801
802 PR c/70883
803 * c-common.c (builtin_function_validate_nargs): Make text of error
804 message consistent with others like it.
805
44a845ca
MS
8062016-06-08 Martin Sebor <msebor@redhat.com>
807 Jakub Jelinek <jakub@redhat.com>
808
809 PR c++/70507
810 PR c/68120
811 * c-common.c (check_builtin_function_arguments): Handle
812 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
813
a80a7051
RB
8142016-06-08 Richard Biener <rguenther@suse.de>
815
816 * c-common.c (parse_optimize_options): Improve diagnostic messages.
817
bfd67b47
RB
8182016-06-07 Richard Biener <rguenther@suse.de>
819
820 PR c/61564
821 * c-common.c (parse_optimize_options): Only apply CL_OPTIMIZATION
822 options and warn about others.
823
15c98b2e
ES
8242016-06-01 Eduard Sanou <dhole@openmailbox.org>
825
826 * c-common.c (get_source_date_epoch): Rename to
827 cb_get_source_date_epoch.
828 * c-common.c (cb_get_source_date_epoch): Use a single generic erorr
829 message when the parsing fails. Use error_at instead of fatal_error.
830 * c-common.h (get_source_date_epoch): Rename to
831 cb_get_source_date_epoch.
832 * c-common.h (cb_get_source_date_epoch): Prototype.
833 * c-common.h (MAX_SOURCE_DATE_EPOCH): Define.
834 * c-common.h (c_omp_region_type): Remove trailing comma.
835 * c-lex.c (init_c_lex): Set cb->get_source_date_epoch callback.
836 * c-lex.c (c_lex_with_flags): Remove initialization of
837 pfile->source_date_epoch.
838
00631022
JJ
8392016-05-30 Jakub Jelinek <jakub@redhat.com>
840
841 PR c++/71349
842 * c-omp.c (c_omp_split_clauses): Put OMP_CLAUSE_DEPEND to
843 C_OMP_CLAUSE_SPLIT_TARGET. Put OMP_CLAUSE_NOWAIT to
844 C_OMP_CLAUSE_SPLIT_TARGET if combined with target construct,
845 instead of C_OMP_CLAUSE_SPLIT_FOR.
846
f17a223d
RB
8472016-05-24 Richard Biener <rguenther@suse.de>
848
849 PR middle-end/70434
850 PR c/69504
851 * c-common.h (convert_vector_to_pointer_for_subscript): Rename to ...
852 (convert_vector_to_array_for_subscript): ... this.
853 * c-common.c (convert_vector_to_pointer_for_subscript): Use a
854 VIEW_CONVERT_EXPR to an array type. Rename to ...
855 (convert_vector_to_array_for_subscript): ... this.
856
4f2e1536
MP
8572016-05-12 Marek Polacek <polacek@redhat.com>
858
859 PR c/70756
860 * c-common.c (pointer_int_sum): Call size_in_bytes_loc instead of
861 size_in_bytes and pass LOC to it.
862
d6e83a8d
MM
8632016-05-11 Mikhail Maltsev <maltsevm@gmail.com>
864
865 PR c/43651
866 * c.opt (Wduplicate-decl-specifier): New option.
867
5c3a10fb
MP
8682016-05-11 Marek Polacek <polacek@redhat.com>
869
870 PR c++/71024
871 * c-common.c (diagnose_mismatched_attributes): New function.
872 * c-common.h (diagnose_mismatched_attributes): Declare.
873
deef7113
MP
8742016-05-04 Marek Polacek <polacek@redhat.com>
875
876 * c.opt (Wdangling-else): New option.
877
79ce98bc
MP
8782016-05-03 Marek Polacek <polacek@redhat.com>
879
880 PR c/70859
881 * c-common.c (builtin_function_validate_nargs): Add location
882 parameter. Use it.
883 (check_builtin_function_arguments): Add location and arguments
884 parameters. Use them.
885 * c-common.h (check_builtin_function_arguments): Update declaration.
886
381cdae4
RB
8872016-05-03 Richard Biener <rguenther@suse.de>
888
889 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): Do not
890 allow call args to gimplify to SSA names.
891
1d793c34
MP
8922016-05-03 Marek Polacek <polacek@redhat.com>
893
894 * c-common.h (enum c_omp_region_type): Remove stray comma.
895
77886428
CP
8962016-05-02 Cesar Philippidis <cesar@codesourcery.com>
897
898 * c-common.h (enum c_omp_region_type): Define.
899
697e0b28
RS
9002016-05-02 Richard Sandiford <richard.sandiford@arm.com>
901
902 * c-common.c (shorten_compare): Use wi::to_wide.
903
e7ff0319
CP
9042016-04-29 Cesar Philippidis <cesar@codesourcery.com>
905
906 PR middle-end/70626
907 * c-common.h (c_oacc_split_loop_clauses): Add boolean argument.
908 * c-omp.c (c_oacc_split_loop_clauses): Use it to duplicate
909 reduction clauses in acc parallel loops.
910
2fff3db8
MP
9112016-04-29 Marek Polacek <polacek@redhat.com>
912
913 PR c/70852
914 * c-common.c (warn_for_memset): Check domain before accessing it.
915
509063eb
DV
9162016-04-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
917
918 PR/69089
919 * c-common.c (handle_aligned_attribute): Allow 0 as an argument to the
920 "aligned" attribute.
921
b632761d
JM
9222016-04-28 Jason Merrill <jason@redhat.com>
923
924 * c-lex.c (c_common_has_attribute): Handle nodiscard.
925
174f6622
ES
9262016-04-28 Eduard Sanou <dhole@openmailbox.org>
927 Matthias Klose <doko@debian.org>
928
929 * c-common.c (get_source_date_epoch): New function, gets the environment
930 variable SOURCE_DATE_EPOCH and parses it as long long with error
931 handling.
932 * c-common.h (get_source_date_epoch): Prototype.
933 * c-lex.c (c_lex_with_flags): set parse_in->source_date_epoch.
934
6bc2bb18
RB
9352015-04-27 Ryan Burn <contact@rnburn.com>
936
937 PR c++/69024
938 PR c++/68997
939 * cilk.c (cilk_ignorable_spawn_rhs_op): Change to external linkage.
940 (cilk_recognize_spawn): Renamed from recognize_spawn and change to
941 external linkage.
942 (cilk_detect_and_unwrap): Corresponding changes.
943 (extract_free_variables): Don't extract free variables from
944 AGGR_INIT_EXPR slot.
945 * c-common.h (cilk_ignorable_spawn_rhs_op): Prototype.
946 (cilk_recognize_spawn): Likewise.
947
c1e1f433
BS
9482016-04-27 Bernd Schmidt <bschmidt@redhat.com>
949
950 * c.opt (Wmemset-elt-size): New option.
951 * c-common.c (warn_for_memset): New function.
952 * c-common.h (warn_for_memset): Declare.
953
d067e05f
JM
9542016-04-25 Jason Merrill <jason@redhat.com>
955
956 * c-common.c (handle_unused_attribute): Accept CONST_DECL.
957 No longer static.
958 * c-common.h: Declare it.
959 * c-lex.c (c_common_has_attribute): Add maybe_unused.
960
9aa36ae5
JM
9612016-04-22 Jason Merrill <jason@redhat.com>
962
963 * c-cppbuiltin.c (c_cpp_builtins): Fix __cpp_range_based_for.
964
477d4906
IV
9652016-04-20 Ilya Verbin <ilya.verbin@intel.com>
966
967 PR c++/69363
968 * c-cilkplus.c (c_finish_cilk_clauses): Remove function.
969 * c-common.h (c_finish_cilk_clauses): Remove declaration.
970
fe37c7af
MM
9712016-04-18 Michael Matz <matz@suse.de>
972
973 * c-common.c (handle_aligned_attribute): Use SET_TYPE_ALIGN
974 and SET_DECL_ALIGN.
975
23f2660f
EB
9762016-04-17 Eric Botcazou <ebotcazou@adacore.com>
977
978 * c-ada-spec.c (get_underlying_decl): Return the typedef, if any.
979 (dump_generic_ada_node) <POINTER_TYPE>: Clean up handling of access
980 to incomplete types.
981 (dump_nested_type): Remove redundant tests and tidy up.
982 (print_ada_declaration): Also set TREE_VISITED on the declaration of
983 a type which is the typedef of an original type.
984
1e77281b
MP
9852016-04-15 Marek Polacek <polacek@redhat.com>
986
987 PR c/70651
988 * c-common.c (build_va_arg): Change two asserts into errors and return
989 error_mark_node.
990
b3a77f21
MP
9912016-04-13 Marek Polacek <polacek@redhat.com>
992
993 PR c++/70639
994 * c-indentation.c (should_warn_for_misleading_indentation): Bail out
995 for switch statements, too.
996
322b8466
JM
9972016-03-28 Jason Merrill <jason@redhat.com>
998
999 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_range_based_for.
1000
fbdb6baf
MP
10012016-03-23 Marek Polacek <polacek@redhat.com>
1002
1003 PR c++/69884
1004 * c.opt (Wignored-attributes): New option.
1005
5c240f4d
DM
10062016-03-22 David Malcolm <dmalcolm@redhat.com>
1007
1008 PR c/69993
1009 * c-indentation.c (warn_for_misleading_indentation): Rewrite the
1010 diagnostic text, reversing the order of the warning and note so
1011 that they appear in source order.
1012
14ba7b28
MP
10132016-03-17 Marek Polacek <polacek@redhat.com>
1014
1015 PR c/69407
1016 * c-common.c (resolve_overloaded_builtin): Set TREE_USED for the fetch
1017 operations.
1018
08a1cadc
JM
10192016-03-14 Jason Merrill <jason@redhat.com>
1020
2aaeea19
JM
1021 * c-cppbuiltin.c (c_cpp_builtins): Set __cpp_hex_float.
1022
08a1cadc
JM
1023 * c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_range_based_for.
1024
c06d25bb
RB
10252016-03-09 Richard Biener <rguenther@suse.de>
1026
1027 PR c/70143
1028 * c-common.c (strict_aliasing_warning): Add back
1029 alias_sets_conflict_p check.
1030
80aac5c8
JM
10312016-03-08 Jason Merrill <jason@redhat.com>
1032
1033 * c-opts.c (set_std_cxx1z): Don't enable concepts.
1034
64b23c13
DM
10352016-03-04 David Malcolm <dmalcolm@redhat.com>
1036
1037 PR c/68187
1038 * c-indentation.c (get_visual_column): Move code to determine next
1039 tab stop to...
1040 (next_tab_stop): ...this new function.
1041 (line_contains_hash_if): Delete function.
1042 (detect_preprocessor_logic): Delete function.
1043 (get_first_nws_vis_column): New function.
1044 (detect_intervening_unindent): New function.
1045 (should_warn_for_misleading_indentation): Replace call to
1046 detect_preprocessor_logic with a call to
1047 detect_intervening_unindent.
1048
729526f5
DM
10492016-03-04 David Malcolm <dmalcolm@redhat.com>
1050
1051 PR c/68187
1052 * c-indentation.c (should_warn_for_misleading_indentation): When
1053 suppressing warnings about cases where the guard and body are on
1054 the same column, only use the first non-whitespace column in place
1055 of the guard token column when dealing with "else" clauses.
1056 When rejecting aligned BODY and NEXT, loosen the requirement
1057 from equality with the first non-whitespace of guard to simply
1058 that they not be indented relative to it.
1059
e9a35493
RB
10602016-03-04 Richard Biener <rguenther@suse.de>
1061
1062 PR c++/70054
1063 * c-common.c (strict_aliasing_warning): Use alias_set_subset_of
1064 instead of alias_sets_conflict_p.
1065
1be56bc5
MP
10662016-03-01 Marek Polacek <polacek@redhat.com>
1067
1068 PR c++/69795
1069 * c-common.c (reject_gcc_builtin): Check for FUNCTION_DECL rather than
1070 any DECL.
1071
35886f0b
MS
10722016-02-22 Martin Sebor <msebor@redhat.com>
1073
1074 PR middle-end/69780
1075 * c-common.c (check_builtin_function_arguments): Validate and
1076 reject invalid arguments to __builtin_alloca_with_align.
1077
4246c8da
MW
10782016-02-20 Mark Wielaard <mjw@redhat.com>
1079
1080 PR c/28901
1081 * c.opt (Wunused-const-variable): Turn into Alias for...
1082 (Wunused-const-variable=): New option.
1083
268be88c
BE
10842016-02-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
1085
1086 PR c++/69865
1087 * c-opts.c (c_common_post_options): Move call to set_std_cxx14 from
1088 here...
1089 (c_common_init_options): ...to here.
1090 (set_std_cxx98): Initialize flag_isoc94 and flag_isoc99.
1091
871b3f47
JJ
10922016-02-19 Jakub Jelinek <jakub@redhat.com>
1093
1094 PR c++/69826
1095 * c-pragma.c (c_pp_lookup_pragma): Handle PRAGMA_CILK_GRAINSIZE.
1096 (init_pragma): Register PRAGMA_CILK_GRAINSIZE even for
1097 flag_preprocess_only.
1098
bf14eba2
JJ
10992016-02-16 Jakub Jelinek <jakub@redhat.com>
1100
1101 PR c/69835
1102 * c.opt (Wnonnull-compare): Enable for -Wall.
1103
ba6b3795
JJ
11042016-02-15 Jakub Jelinek <jakub@redhat.com>
1105
1106 PR c++/69797
1107 * c-common.c (sync_resolve_size): Diagnose too few arguments
1108 even when params is non-NULL empty vector.
1109
a011cd92
BS
11102016-02-08 Bernd Schmidt <bschmidt@redhat.com>
1111
1112 PR target/60410
1113 * c.opt (fshort-double): Remove.
1114
46cb9332
MS
11152016-02-05 Martin Sebor <msebor@redhat.com>
1116
1117 PR c++/69662
1118 * c.opt (Warning options): Update -Wplacement-new to take
1119 an optional argument.
1120
e1b81f2b
JJ
11212016-02-01 Jakub Jelinek <jakub@redhat.com>
1122
1123 PR preprocessor/69543
1124 PR c/69558
1125 * c-pragma.c (handle_pragma_diagnostic): Pass input_location
1126 instead of loc to control_warning_option.
1127
b6adbb9f
NS
11282016-02-01 Nathan Sidwell <nathan@codesourcery.com>
1129
1130 * c.opt (fopenacc-dim=): New option.
1131
5d70666e
RB
11322016-01-27 Ryan Burn <contact@rnburn.com>
1133
1134 PR cilkplus/69267
1135 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): Change to use
1136 gimplify_arg. Removed superfluous post_p argument.
1137 * c-family.h (cilk_gimplify_call_params_in_spawned_fn): Removed
1138 superfluous post_p argument.
1139 * c-gimplify.c (c_gimplify_expr): Likewise.
1140
01e1dea3
DM
11412016-01-26 David Malcolm <dmalcolm@redhat.com>
1142
1143 PR other/69006
1144 * c-opts.c (c_diagnostic_finalizer): Replace invocation of
1145 pp_newline_and_flush with pp_flush.
1146
9f04a53e
MS
11472016-01-20 Martin Sebor <msebor@redhat.com>
1148
1149 PR c/69405
1150 * c-common.c (sync_resolve_size): Avoid printing diagnostic about
1151 an incompatible argument when the argument isn't a valid tree node.
1152
7f26f7df
JM
11532016-01-18 Jason Merrill <jason@redhat.com>
1154
1155 PR c++/68767
1156 * c-common.c (check_function_arguments_recurse): Fold the whole
1157 COND_EXPR, not just the condition.
1158
f62bf092
TV
11592016-01-18 Tom de Vries <tom@codesourcery.com>
1160
1161 * c-omp.c (c_oacc_split_loop_clauses): Don't copy OMP_CLAUSE_REDUCTION,
1162 classify as loop clause.
1163
e0a575ff
JJ
11642016-01-15 Jakub Jelinek <jakub@redhat.com>
1165
1166 PR bootstrap/68271
1167 * c-pragma.c (c_register_pragma_1): Adjust comment to note that
1168 C++ FE no longer has limit on number of pragmas.
1169
11702015-01-14 Ryan Burn <contact@rnburn.com>
b6e3db06
RB
1171
1172 PR c++/69048
1173 * cilk.c (create_cilk_wrapper_body): Call fold_build_cleanup_point_expr
c47eaca6 1174 to add missing cleanup point.
b6e3db06 1175
c7df95d8
DM
11762016-01-14 David Malcolm <dmalcolm@redhat.com>
1177
1178 PR c++/68819
1179 * c-indentation.c (get_visual_column): Add location_t param.
1180 Handle the column number being zero by effectively disabling the
1181 warning, with an "inform".
1182 (should_warn_for_misleading_indentation): Add location_t argument
1183 for all uses of get_visual_column.
1184
21efdd80
PP
11852016-01-10 Patrick Palka <ppalka@gcc.gnu.org>
1186
1187 PR c++/69029
1188 * c-indentation.c (should_warn_for_misleading_indentation):
1189 Don't warn about do-while statements.
1190
7a127fa7
MS
11912016-01-07 Martin Sebor <msebor@redhat.com>
1192
1193 PR c/68966
1194 * c-common.c (sync_resolve_size): Reject first argument when it's
1195 a pointer to _Bool.
1196
c589e975
DM
11972016-01-05 David Malcolm <dmalcolm@redhat.com>
1198
1199 PR c/69122
1200 * c-indentation.c (get_visual_column): Remove default argument.
1201 (should_warn_for_misleading_indentation): For the multiline case,
1202 update call to get_visual_column for next_stmt_exploc so that it
1203 captures the location of the first non-whitespace character in the
1204 relevant line. Don't issue warnings if there is non-whitespace
1205 before the next statement.
1206
818ab71a
JJ
12072016-01-04 Jakub Jelinek <jakub@redhat.com>
1208
1209 Update copyright years.
1210
745e411d
DM
12112015-12-21 David Malcolm <dmalcolm@redhat.com>
1212
1213 * c-common.c (binary_op_error): Convert first param from
1214 location_t to rich_location * and use it when emitting an error.
1215 * c-common.h (binary_op_error): Convert first param from
1216 location_t to rich_location *.
1217
de67c4c3
DM
12182015-12-16 David Malcolm <dmalcolm@redhat.com>
1219
1220 * c-common.h (conflict_marker_get_final_tok_kind): New prototype.
1221 * c-lex.c (conflict_marker_get_final_tok_kind): New function.
1222
4a38b02b
IV
12232015-12-15 Ilya Verbin <ilya.verbin@intel.com>
1224
1225 * c-common.c (c_common_attribute_table): Handle "omp declare target
1226 link" attribute.
1227
54d62f51
JJ
12282015-12-14 Jakub Jelinek <jakub@redhat.com>
1229
1230 PR c/68833
1231 * c.opt (Wmissing-format-attribute, Wnormalized): Add Warning option.
1232
8d4227c8
TB
12332014-12-12 Tobias Burnus <burnus@net-b.de>
1234
1235 PR fortran/68815
1236 * c-format.c (gcc_gfc_char_table): Add 'q' flag to remaining
1237 specifiers (%d, %i,%u and %c).
1238
f6069ccc
DM
12392015-12-10 David Malcolm <dmalcolm@redhat.com>
1240
1241 * c.opt (Wmisleading-indentation): Add to -Wall for C and C++.
1242
63bbf46d
JJ
12432015-12-08 Jakub Jelinek <jakub@redhat.com>
1244
1245 PR c/48088
1246 PR c/68657
1247 * c.opt (Wfloat-conversion, Wsign-conversion): Add Warning.
1248 * c-pragma.c (handle_pragma_diagnostic): Adjust
1249 control_warning_option caller.
1250
f79520bb
DM
12512015-12-07 David Malcolm <dmalcolm@redhat.com>
1252
1253 * c-common.c (c_cpp_error): Update for change to
1254 rich_location::set_range.
1255
b3d5bc62
JJ
12562015-12-04 Paolo Bonzini <bonzini@gnu.org>
1257
1258 * c-common.c (maybe_warn_shift_overflow): Warn on all overflows if
1259 shifting 1 out of the sign bit.
1260
12612015-12-04 Kirill Yukhin <kirill.yukhin@intel.com>
1262
1263 * c-common.c (c_common_attribute_table[]): Update max arguments
1264 count for "simd" attribute.
1265 (handle_simd_attribute): Parse "notinbranch" and "inbranch" arguments.
1266
6eb4a537
JJ
12672015-12-03 Jakub Jelinek <jakub@redhat.com>
1268
1269 PR preprocessor/57580
1270 * c-ppoutput.c (print): Change printed field to bool.
1271 Move src_file last for smaller padding.
1272 (init_pp_output): Set print.printed to false instead of 0.
1273 (scan_translation_unit): Fix up formatting. Set print.printed
1274 to true after printing something other than newline.
1275 (scan_translation_unit_trad): Set print.printed to true instead of 1.
1276 (maybe_print_line_1): Set print.printed to false instead of 0.
1277 (print_line_1): Likewise.
1278 (do_line_change): Set print.printed to true instead of 1.
1279 (cb_define, dump_queued_macros, cb_include, cb_def_pragma,
1280 dump_macro): Set print.printed to false after printing newline.
1281
4250754e
JM
12822015-12-02 Jason Merrill <jason@redhat.com>
1283
f479b43d
JM
1284 * c-common.c (fold_for_warn): New.
1285 (warn_logical_operator, warn_tautological_cmp)
1286 (check_function_arguments_recurse, maybe_warn_bool_compare): Use it.
1287
4250754e
JM
1288 * c-common.c (c_disable_warnings, c_enable_warnings, c_fully_fold)
1289 (c_fully_fold_internal, decl_constant_value_for_optimization):
1290 Move to c/c-fold.c.
1291 * c-common.h: Don't declare decl_constant_value_for_optimization.
1292
e9e32ee6
JM
12932015-12-02 Joseph Myers <joseph@codesourcery.com>
1294
1295 PR c/68162
1296 * c-common.h (c_build_qualified_type): Add extra default
1297 arguments.
1298
37d5ad46
JB
12992015-12-01 Julian Brown <julian@codesourcery.com>
1300 Cesar Philippidis <cesar@codesourcery.com>
1301 James Norris <James_Norris@mentor.com>
1302
1303 * c-pragma.c (oacc_pragmas): Add PRAGMA_OACC_HOST_DATA.
1304 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_HOST_DATA.
1305 (pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_USE_DEVICE.
1306
f07862c7
EB
13072015-11-30 Eric Botcazou <ebotcazou@adacore.com>
1308
1309 * c-ada-spec.c (print_ada_macros): Remove redundant blank line.
1310 (decl_sloc_common): Delete and move bulk of processing to...
1311 (decl_sloc): ...here.
1312 (pp_ada_tree_identifier): Remove reference to QUAL_UNION_TYPE.
1313 (dump_ada_double_name): Remove S parameter and compute the suffix.
1314 (dump_ada_array_type): Add PARENT parameter. Simplify computation of
1315 element type and deal with an anonymous one.
1316 (dump_ada_template): Use RECORD_OR_UNION_TYPE_P macro.
1317 (dump_generic_ada_node): Tweak. Adjust call to dump_ada_array_type
1318 and remove reference to QUAL_UNION_TYPE.
1319 (dump_nested_types): Make 2 passes on the fields and move bulk to...
1320 (dump_nested_type): ...here. New function extracted from above.
1321 Generate a full declaration for anonymous element type of arrays.
1322 (print_ada_declaration): Really skip anonymous declarations. Remove
1323 references to QUAL_UNION_TYPE. Adjust call to dump_ada_array_type.
1324 Clean up processing of declarations of array types and objects.
1325 (print_ada_struct_decl): Remove reference to QUAL_UNION_TYPE.
1326 Remove obsolete code and tidy up.
1327
75c8aac3
JH
13282015-11-29 Jan Hubicka <hubicka@ucw.cz>
1329
1330 PR c/67581
1331 * c-common.c (handle_transparent_union_attribute): Update
1332 also type variants.
1333
b58d3df2
ML
13342015-11-27 Martin Liska <mliska@suse.cz>
1335
1336 PR c++/68312
1337 * array-notation-common.c (cilkplus_extract_an_triplets):
1338 Release vector of vectors.
1339 * cilk.c (gimplify_cilk_spawn): Free allocated memory.
1340
89a01fcf
EB
13412015-11-26 Eric Botcazou <ebotcazou@adacore.com>
1342
1343 PR c++/68527
1344 * c-ada-spec.c (dump_nested_types): Add guard for error_mark_node.
1345 (print_ada_struct_decl): Likewise.
1346
cc5c5226
IZ
13472015-11-23 Igor Zamyatin <igor.zamyatin@intel.com>
1348
1349 PR c++/68001
1350 * c-gimplify.c (c_gimplify_expr): Stop the process if see an error.
1351 * cilk.c (recognize_spawn): Determine location in a more precise
1352 way.
1353
269adb9d
JM
13542015-11-19 Jason Merrill <jason@redhat.com>
1355
1356 * c-common.c (shorten_compare): But look through macros from
1357 system headers.
1358
d0eccfcd
JM
13592015-11-18 Jason Merrill <jason@redhat.com>
1360
1361 * c-common.c (shorten_compare): Don't -Wtype-limits if the
1362 non-constant operand comes from a macro.
1363
3e44547c
JM
13642015-11-17 Jason Merrill <jason@redhat.com>
1365
1366 PR bootstrap/68346
1367 * c-common.c (warn_tautological_cmp): Fold before checking for
1368 constants.
1369
0f62c7a0
MP
13702015-11-16 Marek Polacek <polacek@redhat.com>
1371
1372 PR c++/68362
1373 * c-common.c (check_case_bounds): Fold low and high cases.
1374
a868811e
MP
13752015-11-16 Marek Polacek <polacek@redhat.com>
1376
1377 * c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P.
1378 * c-common.c (c_common_get_alias_set): Likewise.
1379 (handle_visibility_attribute): Likewise.
1380
fff77217
KY
13812015-11-16 Kirill Yukhin <kirill.yukhin@intel.com>
1382
1383 * c-common.c (handle_simd_attribute): New.
1384 (struct attribute_spec): Add entry for "simd".
1385 (handle_simd_attribute): New.
1386
269e63b7
KT
13872015-11-13 Kai Tietz <ktietz70@googlemail.com>
1388
1389 * c-lex.c (interpret_float): Use fold_convert.
1390
ebedc9a3
DM
13912015-11-13 David Malcolm <dmalcolm@redhat.com>
1392
1393 * c-common.c (c_fully_fold_internal): Capture existing souce_range,
1394 and store it on the result.
1395 * c-opts.c (c_common_init_options): Set
1396 global_dc->colorize_source_p.
1397
6e232ba4
JN
13982015-11-12 James Norris <jnorris@codesourcery.com>
1399 Joseph Myers <joseph@codesourcery.com>
1400
1401 * c-pragma.c (oacc_pragmas): Add entry for declare directive.
1402 * c-pragma.h (enum pragma_kind): Add PRAGMA_OACC_DECLARE.
1403 (enum pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT and
1404 PRAGMA_OACC_CLAUSE_LINK.
1405
e78bede6
MP
14062015-11-11 Marek Polacek <polacek@redhat.com>
1407
1408 PR c/68107
1409 PR c++/68266
1410 * c-common.c (valid_array_size_p): New function.
1411 * c-common.h (valid_array_size_p): Declare.
1412
3f8257db 14132015-11-11 Dominique d'Humieres <dominiq@lps.ens.fr>
4ac93c7c
DH
1414
1415 PR bootstrap/68271
1416 * c-pragma.c (c_register_pragma_1): Update the gcc_assert to 256.
1417
69f293c9
AM
14182015-11-11 Andrew MacLeod <amacleod@redhat.com>
1419
1420 * array-notation-common.c: Remove unused header files.
1421 * c-ada-spec.c: Likewise.
1422 * c-cilkplus.c: Likewise.
1423 * c-common.c: Likewise.
1424 * c-cppbuiltin.c: Likewise.
1425 * c-dump.c: Likewise.
1426 * c-format.c: Likewise.
1427 * c-gimplify.c: Likewise.
1428 * c-indentation.c: Likewise.
1429 * c-lex.c: Likewise.
1430 * c-omp.c: Likewise.
1431 * c-opts.c: Likewise.
1432 * c-pch.c: Likewise.
1433 * c-ppoutput.c: Likewise.
1434 * c-pragma.c: Likewise.
1435 * c-pretty-print.c: Likewise.
1436 * c-semantics.c: Likewise.
1437 * c-ubsan.c: Likewise.
1438 * cilk.c: Likewise.
1439 * stub-objc.c: Likewise.
1440
3a40d81d
NS
14412015-11-09 Thomas Schwinge <thomas@codesourcery.com>
1442 Cesar Philippidis <cesar@codesourcery.com>
1443 James Norris <jnorris@codesourcery.com>
1444 Julian Brown <julian@codesourcery.com>
1445 Nathan Sidwell <nathan@codesourcery.com>
1446
1447 * c-pragma.c (oacc_pragmas): Add "routine".
1448 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_ROUTINE.
1449
ee45a32d
EB
14502015-11-08 Eric Botcazou <ebotcazou@adacore.com>
1451
1452 * c-common.c (c_common_attributes): Add scalar_storage_order.
1453 (handle_scalar_storage_order_attribute): New function.
1454 * c-pragma.c (global_sso): New variable.
1455 (maybe_apply_pragma_scalar_storage_order): New function.
1456 (handle_pragma_scalar_storage_order): Likewise.
1457 (init_pragma): Register scalar_storage_order.
1458 * c-pragma.h (maybe_apply_pragma_scalar_storage_order): Declare.
1459 * c.opt (Wscalar-storage-order): New warning.
1460 (fsso-struct=): New option.
1461
eb11eb15
MS
14622015-11-08 Martin Sebor <msebor@redhat.com>
1463
1464 * c.opt (Wplacement-new): Add a period to the end of a sentence.
1465
0aad0198
RS
14662015-11-07 Richard Sandiford <richard.sandiford@arm.com>
1467
1468 * c-common.c: Don't undef DEF_BUILTIN.
1469
8a645150
DM
14702015-11-06 David Malcolm <dmalcolm@redhat.com>
1471
1472 * c-common.c (c_cpp_error): Convert parameter from location_t to
1473 rich_location *. Eliminate the "column_override" parameter and
1474 the call to diagnostic_override_column.
1475 Update the "done_lexing" clause to set range 0
1476 on the rich_location, rather than overwriting a location_t.
1477 * c-common.h (c_cpp_error): Convert parameter from location_t to
1478 rich_location *. Eliminate the "column_override" parameter.
1479
7a5e4956
CP
14802015-11-05 Cesar Philippidis <cesar@codesourcery.com>
1481 Thomas Schwinge <thomas@codesourcery.com>
1482 James Norris <jnorris@codesourcery.com>
1483
1484 * c-omp.c (c_oacc_split_loop_clauses): Make TILE, GANG, WORKER, VECTOR,
1485 AUTO, SEQ, INDEPENDENT and PRIVATE loop clauses. Associate REDUCTION
1486 clauses with parallel and kernels and loops.
1487 * c-pragma.h (enum pragma_omp_clause): Add entries for
1488 PRAGMA_OACC_CLAUSE_{INDEPENDENT,TILE,DEFAULT}.
1489 * pt.c (tsubst_omp_clauses): Add support for OMP_CLAUSE_{NUM_GANGS,
1490 NUM_WORKERS,VECTOR_LENGTH,GANG,WORKER,VECTOR,ASYNC,WAIT,TILE,AUTO,
1491 INDEPENDENT,SEQ}.
1492 (tsubst_expr): Add support for OMP_CLAUSE_{KERNELS,PARALLEL,LOOP}.
1493
e2f5cc96
MS
14942015-11-05 Martin Sebor <msebor@redhat.com>
1495
1496 PR c++/67942
1497 * c.opt (-Wplacement-new): New option.
1498
e01d41e5
JJ
14992015-11-05 Jakub Jelinek <jakub@redhat.com>
1500
1501 * c-common.h (c_finish_omp_atomic): Add TEST argument.
1502 (c_omp_check_loop_iv, c_omp_check_loop_iv_exprs): New prototypes.
1503 * c-omp.c (c_finish_omp_atomic): Add TEST argument. Don't call
1504 save_expr or create_tmp_var* if TEST is true.
1505 (c_finish_omp_for): Store OMP_FOR_ORIG_DECLS always.
1506 Don't call add_stmt here.
1507 (struct c_omp_check_loop_iv_data): New type.
1508 (c_omp_check_loop_iv_r, c_omp_check_loop_iv,
1509 c_omp_check_loop_iv_exprs): New functions.
1510 (c_omp_split_clauses): Adjust for lastprivate being allowed on
1511 distribute.
1512 (c_omp_declare_simd_clauses_to_numbers): Change
1513 OMP_CLAUSE_LINEAR_VARIABLE_STRIDE OMP_CLAUSE_LINEAR_STEP into numbers.
1514 (c_omp_declare_simd_clauses_to_decls): Similarly change those
1515 from numbers to PARM_DECLs.
1516
595278be
MM
15172015-11-04 Mikhail Maltsev <maltsevm@gmail.com>
1518
1519 * c-omp.c (c_omp_split_clauses): Remove conditional compilation. Use
1520 flag_checking.
1521
3f8257db 15222015-11-03 Bernd Schmidt <bschmidt@redhat.com>
c85158de
MS
1523
1524 PR c++-common/67882
b3d5bc62
JJ
1525 * c-common.h (fold_offsetof_1): Add argument.
1526 * c-common.c (fold_offsetof_1): Diagnose more invalid
c85158de
MS
1527 offsetof expressions that reference elements past the end of
1528 an array.
1529
4bf9e5a8
TS
15302015-11-03 Thomas Schwinge <thomas@codesourcery.com>
1531 Chung-Lin Tang <cltang@codesourcery.com>
1532
1533 * c-pragma.c (oacc_pragmas): Add "atomic".
1534 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_ATOMIC.
1535
3b1661a9
ES
15362015-10-30 Evgeny Stupachenko <evstupac@gmail.com>
1537
1538 * c-common.c (handle_target_clones_attribute): New.
1539 (c_common_attribute_table): Add handle_target_clones_attribute.
1540 (handle_always_inline_attribute): Add check on target_clones attribute.
1541 (handle_target_attribute): Ditto.
1542
2adfab87
AM
15432015-10-29 Andrew MacLeod <amacleod@redhat.com>
1544
1545 * array-notation-common.c: Reorder #include's and remove duplicates.
1546 * c-ada-spec.c: Likewise.
1547 * c-cilkplus.c: Likewise.
1548 * c-common.c: Likewise.
1549 * c-cppbuiltin.c: Likewise.
1550 * c-dump.c: Likewise.
1551 * c-format.c: Likewise.
1552 * c-gimplify.c: Likewise.
1553 * c-indentation.c: Likewise.
1554 * c-lex.c: Likewise.
1555 * c-omp.c: Likewise.
1556 * c-opts.c: Likewise.
1557 * c-pch.c: Likewise.
1558 * c-ppoutput.c: Likewise.
1559 * c-pragma.c: Likewise.
1560 * c-pretty-print.c: Likewise.
1561 * c-semantics.c: Likewise.
1562 * c-ubsan.c: Likewise.
1563 * cilk.c: Likewise.
1564 * stub-objc.c: Likewise.
1565
d90ec4f2
JM
15662015-10-28 Jason Merrill <jason@redhat.com>
1567
1568 * c-common.c (pointer_int_sum): Fold the MULT_EXPR.
1569
88bae6f4
TS
15702015-10-27 Thomas Schwinge <thomas@codesourcery.com>
1571 James Norris <jnorris@codesourcery.com>
1572 Cesar Philippidis <cesar@codesourcery.com>
1573
1574 PR c/64765
1575 PR c/64880
1576 * c-common.h (c_oacc_split_loop_clauses): Declare function.
1577 * c-omp.c (c_oacc_split_loop_clauses): New function.
1578
b1726d6c
MS
15792015-10-21 Martin Sebor <msebor@redhat.com>
1580
1581 PR driver/68043
1582 * c.opt: End each sentence that describes an option with a period.
1583
fa60eeb9
MP
15842015-10-20 Marek Polacek <polacek@redhat.com>
1585
1586 * array-notation-common.c (is_cilkplus_vector_p): Define.
1587 * c-common.h (is_cilkplus_vector_p): Declare.
1588
95979049
MP
15892015-10-20 Marek Polacek <polacek@redhat.com>
1590
1591 * c.opt (std=gnu++11): Do not describe as experimental.
1592 (std=gnu++14): Likewise.
1593
2a9fb712
JM
15942015-10-19 Jason Merrill <jason@redhat.com>
1595
1596 * c-cppbuiltin.c (c_cpp_builtins): Define
1597 __cpp_nontype_template_args.
1598
13b380a3
JM
15992015-10-19 Jason Merrill <jason@redhat.com>
1600
1601 * c-cppbuiltin.c (c_cpp_builtins): Define
1602 __cpp_enumerator_attributes, __cpp_fold_expressions,
1603 __cpp_unicode_characters.
1604
d9a6bd32
JJ
16052015-10-13 Jakub Jelinek <jakub@redhat.com>
1606 Aldy Hernandez <aldyh@redhat.com>
1607
1608 * c-common.c (enum c_builtin_type): Define DEF_FUNCTION_TYPE_9,
1609 DEF_FUNCTION_TYPE_10 and DEF_FUNCTION_TYPE_11.
1610 (c_define_builtins): Likewise.
1611 * c-common.h (enum c_omp_clause_split): Add
1612 C_OMP_CLAUSE_SPLIT_TASKLOOP.
1613 (c_finish_omp_critical, c_finish_omp_ordered): Add CLAUSES argument.
1614 (c_finish_omp_for): Add ORIG_DECLV argument.
1615 * c-cppbuiltin.c (c_cpp_builtins): Predefine _OPENMP as
1616 201511 instead of 201307.
1617 * c-omp.c (c_finish_omp_critical): Add CLAUSES argument, set
1618 OMP_CRITICAL_CLAUSES to it.
1619 (c_finish_omp_ordered): Add CLAUSES argument, set
1620 OMP_ORDERED_CLAUSES to it.
1621 (c_finish_omp_for): Add ORIG_DECLV argument, set OMP_FOR_ORIG_DECLS
1622 to it if OMP_FOR. Clear DECL_INITIAL on the IVs.
1623 (c_omp_split_clauses): Handle OpenMP 4.5 combined/composite
1624 constructs and new OpenMP 4.5 clauses. Clear
1625 OMP_CLAUSE_SCHEDULE_SIMD if not combined with OMP_SIMD. Add
1626 verification code.
1627 * c-pragma.c (omp_pragmas_simd): Add taskloop.
1628 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_TASKLOOP.
1629 (enum pragma_omp_clause): Add
1630 PRAGMA_OMP_CLAUSE_{DEFAULTMAP,GRAINSIZE,HINT,{IS,USE}_DEVICE_PTR}
1631 and PRAGMA_OMP_CLAUSE_{LINK,NOGROUP,NUM_TASKS,PRIORITY,SIMD,THREADS}.
1632
624d31fe
RS
16332015-10-05 Richard Sandiford <richard.sandiford@arm.com>
1634
1635 * c-lex.c (interpret_float): Use real_equal instead of
1636 REAL_VALUES_EQUAL.
1637
b8fd7909
JM
16382015-10-04 Jason Merrill <jason@redhat.com>
1639
1640 Implement N4514, C++ Extensions for Transactional Memory.
1641 * c-common.c (c_common_reswords): Add C++ TM TS keywords.
1642 (c_common_attribute_table): Add transaction_safe_dynamic.
1643 transaction_safe now affects type identity.
1644 (handle_tm_attribute): Handle transaction_safe_dynamic.
1645 * c-common.h (enum rid): Add RID_ATOMIC_NOEXCEPT,
1646 RID_ATOMIC_CANCEL, RID_SYNCHRONIZED.
1647 (OBJC_IS_CXX_KEYWORD): Add RID_SYNCHRONIZED.
1648 (D_TRANSMEM): New.
1649 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_transactional_memory.
1650 * c-pretty-print.c (pp_c_attributes_display): Don't print
1651 transaction_safe in C++.
1652
12651878
MP
16532015-10-02 Marek Polacek <polacek@redhat.com>
1654
1655 * c.opt (Wduplicated-cond): Don't enable by -Wall anymore.
1656
3e3b8d63
MP
16572015-10-02 Marek Polacek <polacek@redhat.com>
1658
1659 PR c/64249
1660 * c-common.c (warn_duplicated_cond_add_or_warn): New function.
1661 * c-common.h (warn_duplicated_cond_add_or_warn): Declare.
1662 * c.opt (Wduplicated-cond): New option.
1663
0d1a8f75
JM
16642015-10-01 Joseph Myers <joseph@codesourcery.com>
1665
1666 * c.opt (std=c11): Do not describe as experimental.
1667 (std=gnu11): Likewise.
1668 (std=iso9899:2011): Likewise.
1669
3e32ee19
NS
16702015-09-28 Nathan Sidwell <nathan@codesourcery.com>
1671
1672 * c-common.c (DEF_FUNCTION_TYPE_VAR_6): New.
1673 (DEF_FUNCTION_TYPE_VAR_11): Delete.
1674
974348ee
MP
16752015-09-25 Marek Polacek <polacek@redhat.com>
1676
1677 * c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
1678 (ubsan_instrument_shift): Likewise.
1679
15dbc1a6
MP
16802015-09-25 Marek Polacek <polacek@redhat.com>
1681
1682 PR sanitizer/64906
1683 * c-ubsan.c (ubsan_instrument_division): Also pre-evaluate OP1.
1684
6b95d7cc
PP
16852015-09-24 Patrick Palka <ppalka@gcc.gnu.org>
1686
1687 * c-indentation.c (should_warn_for_misleading_indentation):
1688 Compare next_stmt_vis_column with guard_line_first_nws instead
1689 of with guard_line_vis_column.
1690
c1822f9c
MLI
16912015-09-23 Manuel López-Ibáñez <manu@gcc.gnu.org>
1692
1693 PR c/49654
1694 PR c/49655
1695 * c-pragma.c (handle_pragma_diagnostic): Detect non-warning
1696 options and options not valid for the current language.
1697
d5398058
PP
16982015-09-22 Patrick Palka <ppalka@gcc.gnu.org>
1699
1700 * c-indentation.c (should_warn_for_misleading_indentation):
1701 Float out and consolidate the calls to get_visual_column that
1702 are passed guard_exploc as an argument. Compare
1703 next_stmt_vis_column with guard_line_first_nws instead of with
1704 body_line_first_nws.
1705
6b333269
NS
17062015-09-22 Nathan Sidwell <nathan@codesourcery.com>
1707
1708 * c.opt (Wmultiple-inheritance, Wvirtual-inheritance, Wtemplates,
1709 Wnamespaces): New C++ warnings.
1710
a75f1574
JM
17112015-09-22 Jason Merrill <jason@redhat.com>
1712
1713 * c-common.h (abi_compat_version_crosses): New.
1714 (warn_abi_version): Declare.
1715 * c-common.c: Define it.
1716 * c-opts.c (c_common_post_options): Handle it.
1717 flag_abi_compat_version defaults to 8.
1718
bdaaa8b7
VV
17192015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
1720
1721 Complete the implementation of N4230, Nested namespace definition.
1722 * c-cppbuiltin.c: Add __cpp_namespace_attributes and
1723 __cpp_nested_namespace_definitions.
1724
eaa797e8
MLI
17252015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
1726
1727 * c-pragma.c (handle_pragma_diagnostic): Fix wrong return.
1728
c4914de6
MLI
17292015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
1730
1731 * c-pragma.c (handle_pragma_diagnostic): Use explicit location
1732 when warning.
1733 * c-pragma.h (pragma_lex): Add optional loc argument.
1734
fcb87c50
MM
17352015-09-16 Mikhail Maltsev <maltsevm@gmail.com>
1736
1737 * c-format.c (check_format_arg): Adjust to use common block size in all
1738 object pools.
1739
31bdd08a
DM
17402015-09-15 David Malcolm <dmalcolm@redhat.com>
1741
1742 * c-format.c (location_from_offset): Update for change in
1743 signature of location_get_source_line.
1744 * c-indentation.c (get_visual_column): Likewise.
1745 (line_contains_hash_if): Likewise.
1746
aa9f4b4c
MP
17472015-09-14 Marek Polacek <polacek@redhat.com>
1748
1749 * c-opts.c (c_common_post_options): Set C++ standard earlier, before
1750 setting various warnings.
1751
aa256c4a
MP
17522015-09-14 Marek Polacek <polacek@redhat.com>
1753
1754 * c-common.c (warn_for_sign_compare): Cast to unsigned when shifting
1755 a negative value.
1756
0f876f22
MW
17572015-09-11 Mark Wielaard <mjw@redhat.com>
1758
1759 PR c/28901
1760 * c.opt (Wunused-variable): Option from common.opt.
1761 (Wunused-const-variable): New option.
1762
273aa49e
PC
17632015-09-09 Paolo Carlini <paolo.carlini@oracle.com>
1764
1765 PR c++/53184
1766 * c.opt ([Wsubobject-linkage]): Add.
1767
1807ffc1
MS
17682015-09-03 Martin Sebor <msebor@redhat.com>
1769
1770 PR c/66516
1771 * c-common.h (c_decl_implicit, reject_gcc_builtin): Declare new
1772 functions.
1773 * c-common.c (reject_gcc_builtin): Define.
1774
38942840
BI
17752015-09-02 Balaji V. Iyer <balaji.v.iyer@intel.com>
1776
1777 PR middle-end/60586
1778 * c-common.h (cilk_gimplify_call_params_in_spawned_fn): New
1779 prototype.
1780 * c-gimplify.c (c_gimplify_expr): Added a call to the function
1781 cilk_gimplify_call_params_in_spawned_fn.
1782 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): New function.
1783 (gimplify_cilk_spawn): Removed EXPR_STMT and CLEANUP_POINT_EXPR
1784 unwrapping.
1785
c316b5e4
MP
17862015-08-25 Marek Polacek <polacek@redhat.com>
1787
1788 PR middle-end/67330
1789 * c-common.c (handle_weak_attribute): Don't check whether the
1790 visibility can be changed here.
1791
584a7c46
MLI
17922015-08-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
1793
1794 * c-lex.c (c_lex_with_flags): Use explicit locations.
1795
a79683d5
TS
17962015-08-18 Trevor Saunders <tbsaunde@tbsaunde.org>
1797
1798 * c-ada-spec.h, c-common.c, c-common.h, c-format.c, c-format.h,
1799 c-objc.h, c-ppoutput.c, c-pragma.c, c-pragma.h: Remove useless
1800
61717a45
FXC
18012015-08-18 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1802
1803 PR middle-end/36757
1804 * c-common.c (check_builtin_function_arguments): Add check
1805 for BUILT_IN_SIGNBIT argument.
1806
329524f5
PC
18072015-08-18 Paolo Carlini <paolo.carlini@oracle.com>
1808
1809 PR c++/67160
1810 * c-cppbuiltin.c (c_cpp_builtins): Fix __cpp_static_assert value
1811 in c++1z mode.
1812
4ee55665
MP
18132015-08-17 Marek Polacek <polacek@redhat.com>
1814
1815 * c-pretty-print.c (pp_c_cv_qualifiers): Remove code dealing
1816 with whitespaces before qualifier names.
1817
b893e375
MP
18182015-08-12 Marek Polacek <polacek@redhat.com>
1819
1820 PR c++/55095
1821 * c-common.c (maybe_warn_shift_overflow): Properly handle
1822 left-shifting 1 into the sign bit.
1823
c2d89095
MLI
18242015-08-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
1825
1826 * c.opt (Wchkp): Use LangEnabledBy instead of EnabledBy.
1827
971e17ff
AS
18282015-08-06 Andrew Sutton <andrew.n.sutton@gmail.com>
1829 Braden Obrzut <admin@maniacsvault.net>
1830 Jason Merrill <jason@redhat.com>
1831
1832 Add C++ Concepts TS support.
1833 * c-common.c (c_common_reswords): Add __is_same_as, concept, requires.
1834 * c-common.h (enum rid): Add RID_IS_SAME_AS, RID_CONCEPT, RID_REQUIRES.
1835 (D_CXX_CONCEPTS, D_CXX_CONCEPTS_FLAGS): New.
1836 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_concepts.
1837 * c-opts.c (set_std_cxx1z): Set flag_concepts.
1838 * c.opt (fconcepts): New.
1839
b3d5bc62
JJ
18402015-08-02 Martin Sebor <msebor@redhat.com>
1841
1842 * c.opt (-Wframe-address): New warning option.
1843
8ebca419
PP
18442015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
1845
1846 * c-indentation.c (should_warn_for_misleading_indentation):
1847 Improve heuristics.
1848
1a1e101f
PP
18492015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
1850
1851 * c-indentation.c (get_visual_column): Add parameter first_nws,
1852 use it. Update comment documenting the function.
1853 (is_first_nonwhitespace_on_line): Remove.
1854 (should_warn_for_misleading_indentation): Replace usage of
1855 of is_first_nonwhitespace_on_line with get_visual_column.
1856
992118a1
PP
18572015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
1858
1859 * c-indentation.h (struct token_indent_info): Define.
1860 (get_token_indent_info): Define.
1861 (warn_for_misleading_information): Declare.
1862 * c-common.h (warn_for_misleading_information): Remove.
1863 * c-identation.c (warn_for_misleading_indentation):
1864 Change declaration to take three token_indent_infos. Adjust
1865 accordingly.
1866 * c-identation.c (should_warn_for_misleading_indentation):
1867 Likewise. Bail out early if the body is a compound statement.
1868 (guard_tinfo_to_string): Define.
1869
e8fa3817
JM
18702015-07-30 Jason Merrill <jason@redhat.com>
1871
1872 * c-pretty-print.c (unary_expression) [INDIRECT_REF]: Don't print
1873 '*' for reference decay.
1874
173864e8
MP
18752015-07-30 Marek Polacek <polacek@redhat.com>
1876
1877 * c-common.c (warn_tautological_cmp): Bail for float types.
1878
f2afe6dd
MP
18792015-07-27 Marek Polacek <polacek@redhat.com>
1880
1881 PR bootstrap/67030
1882 * c-common.c (warn_tautological_cmp): Don't warn for macro expansion.
1883
05b28fd6
MP
18842015-07-27 Marek Polacek <polacek@redhat.com>
1885
1886 PR c++/66555
1887 PR c/54979
1888 * c-common.c (find_array_ref_with_const_idx_r): New function.
1889 (warn_tautological_cmp): New function.
1890 * c-common.h (warn_tautological_cmp): Declare.
1891 * c.opt (Wtautological-compare): New option.
1892
5a5062b8
MP
18932015-07-23 Marek Polacek <polacek@redhat.com>
1894
1895 * c-ubsan.c (ubsan_instrument_division): Use unshare_expr throughout.
1896 (ubsan_instrument_shift): Likewise.
1897
dc891fe7
MP
18982015-07-23 Marek Polacek <polacek@redhat.com>
1899
1900 PR sanitizer/66908
1901 * c-ubsan.c: Include gimplify.h.
1902 (ubsan_instrument_division): Unshare OP0 and OP1.
1903 (ubsan_instrument_shift): Likewise.
1904
451b5e48
MP
19052015-07-20 Marek Polacek <polacek@redhat.com>
1906 Richard Sandiford <richard.sandiford@arm.com>
1907
1908 PR c++/55095
1909 * c-common.c (c_fully_fold_internal): Warn about left shift overflows.
1910 Use EXPR_LOC_OR_LOC.
1911 (maybe_warn_shift_overflow): New function.
1912 * c-common.h (maybe_warn_shift_overflow): Declare.
1913 * c-opts.c (c_common_post_options): Set warn_shift_overflow.
1914 * c.opt (Wshift-overflow): New option.
1915
fb0b2914
ML
19162015-07-16 Martin Liska <mliska@suse.cz>
1917
1918 * c-format.c (static void check_format_info_main): Use
1919 object_allocator instead of pool_allocator.
1920 (check_format_arg): Likewise.
1921 (check_format_info_main): Likewise.
1922
903f5c23
AM
19232015-07-15 Andrew MacLeod <amacleod@redhat.com>
1924
1925 * c-opts.c: Remove multiline #include comment.
1926
026c3cfd
AH
19272015-07-12 Aldy Hernandez <aldyh@redhat.com>
1928
1929 * c-common.c: Fix double word typos.
1930
bb49ee66
EB
19312015-07-10 Eric Botcazou <ebotcazou@adacore.com>
1932
1933 * c-ada-spec.h (cpp_operation): Revert latest change.
1934 * c-ada-spec.c (print_ada_declaration): Likewise. Skip implicit
1935 constructors and destructors.
1936
1916bcb5
AM
19372015-07-09 Andrew MacLeod <amacleod@redhat.com>
1938
1939 * c-common.h: Adjust includes for flags.h changes.
1940 * stub-objc.c: Likewise.
026c3cfd 1941
a9dcd529
EB
19422015-07-08 Eric Botcazou <ebotcazou@adacore.com>
1943
1944 * c-ada-spec.h (cpp_operation): Add IS_CONSTEXPR.
1945 * c-ada-spec.c (print_ada_declaration): Skip constexpr constructors.
1946
b03b462f
JJ
19472015-07-08 Jakub Jelinek <jakub@redhat.com>
1948
1949 * c-omp.c (c_omp_declare_simd_clauses_to_numbers): If all clauses
1950 are to be removed, return NULL rather than original clauses list.
1951
c7131fb2
AM
19522015-07-07 Andrew MacLeod <amacleod@redhat.com>
1953
1954 * array-notation-common.c: Adjust includes.
1955 * c-ada-spec.c: Likewise.
1956 * c-cilkplus.c: Likewise.
1957 * c-common.h: Likewise.
1958 * c-cppbuiltin.c: Likewise.
1959 * c-dump.c: Likewise.
1960 * c-format.c: Likewise.
1961 * c-gimplify.c: Likewise.
1962 * c-indentation.c: Likewise.
1963 * c-lex.c: Likewise.
1964 * c-omp.c: Likewise.
1965 * c-opts.c: Likewise.
1966 * c-pch.c: Likewise.
1967 * c-ppoutput.c: Likewise.
1968 * c-pragma.c: Likewise.
1969 * c-pretty-print.c: Likewise.
1970 * c-semantics.c: Likewise.
1971 * c-ubsan.c: Likewise.
1972 * cilk.c: Likewise.
1973 * stub-objc.c: Likewise.
1974
2a7fb83f
EB
19752015-07-07 Eric Botcazou <ebotcazou@adacore.com>
1976
1977 * c-ada-spec.h (cpp_operation): Add IS_MOVE_CONSTRUCTOR.
1978 * c-ada-spec.c (print_ada_declaration): Skip move constructors.
1979
a03c9bf1
JM
19802015-07-01 Jason Merrill <jason@redhat.com>
1981
36a85135
JM
1982 * c-common.h (D_CXX11): Rename from D_CXX0X.
1983 (RID_FIRST_CXX11, RID_LAST_CXX11): Rename from *_CXX0X.
1984 * c-common.c: Adjust.
1985
e7fa68d5
JM
1986 * c-opts.c (c_common_post_options): Default to C++14.
1987
a03c9bf1
JM
1988 * c-opts.c (c_common_post_options): Highest ABI level is now 10.
1989
fe95b036
ESR
19902015-06-30 Edward Smith-Rowland <3dw4rd@verizon.net>
1991
1992 Implement N4197 - Adding u8 character literals
b3d5bc62 1993 * c-ada-spec.c (print_ada_macros): Treat CPP_UTF8CHAR like
a64be36b 1994 CPP_CHAR.
b3d5bc62 1995 * c-common.c (c_parse_error): Print CPP_UTF8CHAR and
a64be36b 1996 CPP_UTF8CHAR_USERDEF tokens.
b3d5bc62 1997 * c-lex.c (c_lex_with_flags): Treat CPP_UTF8CHAR_USERDEF
a64be36b
EB
1998 and CPP_UTF8CHAR tokens.
1999 (lex_charconst): Treat CPP_UTF8CHAR token.
fe95b036 2000
da2e71c9
MLI
20012015-06-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
2002
2003 PR fortran/66605
2004 * c-common.c (do_warn_unused_parameter): Move here.
2005 * c-common.h (do_warn_unused_parameter): Declare.
2006
b155cfd9
MP
20072015-06-29 Marek Polacek <polacek@redhat.com>
2008
2009 PR c/66322
2010 * c-common.c (check_case_bounds): Add bool * parameter. Set
2011 OUTSIDE_RANGE_P.
2012 (c_add_case_label): Add bool * parameter. Pass it down to
2013 check_case_bounds.
2014 (c_do_switch_warnings): Add bool parameters. Implement -Wswitch-bool
2015 warning here.
2016 * c-common.h (c_add_case_label, c_do_switch_warnings): Update
2017 declarations.
2018
31521951
MP
20192015-06-27 Marek Polacek <polacek@redhat.com>
2020
2021 * c-common.c (check_main_parameter_types): Use VECTOR_TYPE_P
2022 or VECTOR_INTEGER_TYPE_P throughout.
2023 * c-gimplify.c: Likewise.
2024
22d03525
MP
20252015-06-26 Marek Polacek <polacek@redhat.com>
2026
2027 * array-notation-common.c (find_rank): Use INDIRECT_REF_P.
2028 * c-common.c (c_fully_fold_internal): Likewise.
2029 (c_alignof_expr): Likewise.
2030 * c-pretty-print.c (c_pretty_printer::postfix_expression): Likewise.
2031 * c-ubsan.c (ubsan_instrument_bounds): Likewise.
b1726d6c 2032 * cilk.c (create_parm_list): Likewise.
22d03525 2033
af05e6e5
MP
20342015-06-26 Marek Polacek <polacek@redhat.com>
2035
2036 * c-common.c (handle_unused_attribute): Use VAR_OR_FUNCTION_DECL_P.
2037
f0889939
AM
20382015-06-25 Andrew MacLeod <amacleod@redhat.com>
2039
2040 * c-common.c: Remove ipa-ref.h and plugin-api.h from include list.
2041 * c-gimplify.c: Likewise.
2042 * c-pragma.c: Likewise.
2043 * c-ubsan.c: Likewise.
2044 * cilk.c: Likewise.
2045
ca752f39
RS
20462015-06-25 Richard Sandiford <richard.sandiford@arm.com>
2047
2048 * c-common.c (c_type_hasher): Inherit from ggc_ptr_hash rather than
2049 ggc_hasher.
2050
16a16ec7
AM
20512015-06-25 Andrew MacLeod <amacleod@redhat.com>
2052
2053 * cilk.c: Move calls.h after tm.h in the include chain.
2054
0ae9bd27
MP
20552015-06-25 Marek Polacek <polacek@redhat.com>
2056
2057 * array-notation-common.c: Use VAR_P throughout.
2058 * c-ada-spec.c: Likewise.
2059 * c-common.c: Likewise.
2060 * c-format.c: Likewise.
2061 * c-gimplify.c: Likewise.
2062 * c-omp.c: Likewise.
2063 * c-pragma.c: Likewise.
2064 * c-pretty-print.c: Likewise.
2065 * cilk.c: Likewise.
2066
62f9079a
MP
20672015-06-25 Marek Polacek <polacek@redhat.com>
2068
2069 * cilk.c (extract_free_variables): Use is_global_var.
2070
0fa16060
RS
20712015-06-23 Richard Sandiford <richard.sandiford@arm.com>
2072
2073 * c-common.c: Don't include target-def.h.
2074
a68ae2e1
MP
20752015-06-23 Marek Polacek <polacek@redhat.com>
2076
2077 * c-common.c (warn_logical_operator): Use tree_int_cst_equal
2078 when comparing INTEGER_CSTs.
2079
c6a2f2d9
PMR
20802015-06-22 Pierre-Marie de Rodat <derodat@adacore.com>
2081
2082 * c-ada-spec.h (cpp_operation): Add HAS_DEPENDENT_TEMPLATE_ARGS.
2083 * c-ada-spec.c (collect_ada_nodes): Skip NAMESPACE_DECL
2084 (dump_ada_template): Skip partially specialized types.
2085
6b4db501
MM
20862015-06-22 Mikhail Maltsev <maltsevm@gmail.com>
2087
2088 * c-common.c (scalar_to_vector): Use std::swap instead of manually
2089 swapping.
2090
abb226c9
AM
20912015-06-17 Andrew MacLeod <amacleod@redhat.com>
2092
2093 * array-notation-common.c: Do not include input.h, line-map.h or is-a.h.
2094 * c-ada-spec.c: Likewise.
2095 * c-cilkplus.c: Likewise.
2096 * c-common.c: Likewise.
2097 * c-common.h: Likewise.
2098 * c-cppbuiltin.c: Likewise.
2099 * c-dump.c: Likewise.
2100 * c-format.c: Likewise.
2101 * c-gimplify.c: Likewise.
2102 * c-indentation.c: Likewise.
2103 * c-lex.c: Likewise.
2104 * c-omp.c: Likewise.
2105 * c-opts.c: Likewise.
2106 * c-pch.c: Likewise.
2107 * c-ppoutput.c: Likewise.
2108 * c-pragma.c: Likewise.
2109 * c-pretty-print.c: Likewise.
2110 * c-semantics.c: Likewise.
2111 * c-ubsan.c: Likewise.
2112 * cilk.c: Likewise.
2113 * stub-objc.c: Likewise.
2114
076fecad
PP
21152015-06-13 Patrick Palka <ppalka@gcc.gnu.org>
2116
2117 PR c++/65168
2118 * c-common.c (c_common_truthvalue_conversion): Warn when
2119 converting an address of a reference to a truth value.
2120
13fdf2e2
AM
21212015-06-08 Andrew MacLeod <amacleod@redhat.com>
2122
2123 * array-notation-common.c : Adjust include files.
2124 * c-ada-spec.c : Likewise.
2125 * c-cilkplus.c : Likewise.
2126 * c-common.c : Likewise.
2127 * c-common.h : Likewise.
2128 * c-cppbuiltin.c : Likewise.
2129 * c-dump.c : Likewise.
2130 * c-format.c : Likewise.
2131 * c-gimplify.c : Likewise.
2132 * c-indentation.c : Likewise.
2133 * c-lex.c : Likewise.
2134 * c-omp.c : Likewise.
2135 * c-opts.c : Likewise.
2136 * c-pch.c : Likewise.
2137 * c-ppoutput.c : Likewise.
2138 * c-pragma.c : Likewise.
2139 * c-pretty-print.c : Likewise.
2140 * c-semantics.c : Likewise.
2141 * c-ubsan.c : Likewise.
2142 * cilk.c : Likewise.
2143 * stub-objc.c : Likewise.
2144
a1661b90
MP
21452015-06-08 Marek Polacek <polacek@redhat.com>
2146
2147 PR c/66415
2148 * c-format.c (location_from_offset): Return LOC if LINE is null.
2149
d7438551
AH
21502015-06-05 Aldy Hernandez <aldyh@redhat.com>
2151
2152 * c-common.h (c_parse_final_cleanups): New prototype.
2153 * c-opts.c (c_common_parse_file): Call c_parse_final_cleanups.
2154
b3d5bc62
JJ
21552015-06-04 Sriraman Tallam <tmsriram@google.com>
2156
2157 * c-common.c (noplt): New attribute.
2158 (handle_noplt_attribute): New handler.
2159
ecb9f223
AM
21602015-06-04 Andrew MacLeod <amacleod@redhat.com>
2161
2162 * array-notation-common.c: Adjust includes for restructured coretypes.h.
2163 * c-ada-spec.c: Likewise.
2164 * c-cilkplus.c: Likewise.
2165 * c-common.c: Likewise.
2166 * c-common.h: Likewise.
2167 * c-cppbuiltin.c: Likewise.
2168 * c-dump.c: Likewise.
2169 * c-format.c: Likewise.
2170 * c-gimplify.c: Likewise.
2171 * c-indentation.c: Likewise.
2172 * c-lex.c: Likewise.
2173 * c-omp.c: Likewise.
2174 * c-opts.c: Likewise.
2175 * c-pch.c: Likewise.
2176 * c-ppoutput.c: Likewise.
2177 * c-pragma.c: Likewise.
2178 * c-pretty-print.c: Likewise.
2179 * c-semantics.c: Likewise.
2180 * c-ubsan.c: Likewise.
2181 * cilk.c: Likewise.
2182 * stub-objc.c: Likewise.
2183
6ac48155
DM
21842015-06-02 David Malcolm <dmalcolm@redhat.com>
2185
2186 PR c/66220:
2187 * c-indentation.c (should_warn_for_misleading_indentation): Use
2188 expand_location rather than expand_location_to_spelling_point.
2189 Don't warn if the guarding statement is more indented than the
2190 next/body stmts.
2191
773ce42e
DM
21922015-06-02 David Malcolm <dmalcolm@redhat.com>
2193
2194 * c-indentation.c (warn_for_misleading_indentation): Bail out
2195 immediately if -Wmisleading-indentation isn't enabled.
2196
4fef8379
ML
21972015-06-01 Martin Liska <mliska@suse.cz>
2198
2199 * c-format.c (check_format_arg):Use new type-based pool allocator.
2200 (check_format_info_main) Likewise.
2201
1edfb384
EB
22022015-05-31 Eric Botcazou <ebotcazou@adacore.com>
2203
2204 * c-ada-spec.c (is_tagged_type): Test for TYPE_METHODS on main variant.
2205 (has_nontrivial_methods): Likewise.
2206
9677ef52
MP
22072015-05-25 Marek Polacek <polacek@redhat.com>
2208
2209 * c-ubsan.c (ubsan_instrument_shift): Use type0.
2210
fd5c817a
MP
22112015-05-22 Marek Polacek <polacek@redhat.com>
2212
2213 PR c/47043
2214 * c-common.c (handle_deprecated_attribute): Allow CONST_DECL.
2215
a2f45fe6 22162015-05-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
581edfa3
TS
2217
2218 * c-cppbuiltin.c (c_cpp_builtins): Use if instead of #if with
2219 STACK_GROWS_DOWNWARD.
2220
a2f45fe6 22212015-05-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
62f9f30b
TS
2222
2223 * c-cppbuiltin.c (c_cpp_builtins): Check the value of
2224 STACK_GROWS_DOWNWARD rather than if it is defined.
2225
0fee2ac2 22262015-05-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
b1726d6c 2227
0fee2ac2
MLI
2228 PR c/52952
2229 * c-format.c (location_column_from_byte_offset): New.
2230 (location_from_offset): New.
2231 (struct format_wanted_type): Add offset_loc field.
2232 (check_format_info): Move handling of location for extra arguments
2233 closer to the point of warning.
2234 (check_format_info_main): Pass the result of location_from_offset
2235 to warning_at.
2236 (format_type_warning): Pass the result of location_from_offset
2237 to warning_at.
2238
cf4ef6f7
MP
22392015-05-20 Marek Polacek <polacek@redhat.com>
2240
2241 * c-omp.c (check_omp_for_incr_expr): Use BINARY_CLASS_P.
2242
3a65ee74
MP
22432015-05-20 Marek Polacek <polacek@redhat.com>
2244
2245 * c-ada-spec.c (dump_sloc): Use DECL_P.
2246
21b634ae
MP
22472015-05-20 Marek Polacek <polacek@redhat.com>
2248
2249 * c-pragma.c: Use VAR_OR_FUNCTION_DECL_P throughout.
2250 * c-common.c: Likewise.
2251
0e50b624
DM
22522015-05-19 David Malcolm <dmalcolm@redhat.com>
2253
2254 * c-common.h (fe_file_change): Strengthen param from
2255 const line_map * to const line_map_ordinary *.
2256 (pp_file_change): Likewise.
2257 * c-lex.c (fe_file_change): Likewise.
2258 (cb_define): Use linemap_check_ordinary when invoking
2259 SOURCE_LINE.
2260 (cb_undef): Likewise.
2261 * c-opts.c (c_finish_options): Use linemap_check_ordinary when
2262 invoking cb_file_change.
2263 (c_finish_options): Likewise.
2264 (push_command_line_include): Likewise.
2265 (cb_file_change): Strengthen param "new_map" from
2266 const line_map * to const line_map_ordinary *.
2267 * c-ppoutput.c (cb_define): Likewise for local "map".
2268 (pp_file_change): Likewise for param "map" and local "from".
2269
fab27f52
MM
22702015-05-19 Mikhail Maltsev <maltsevm@gmail.com>
2271
2272 * c-common.c (shorten_compare): Use std::swap instead of explicit swaps.
2273
2fe1d762
TV
22742015-05-18 Tom de Vries <tom@codesourcery.com>
2275
2276 * c-common.c (build_va_arg_1): New function.
2277 (build_va_arg): Add address operator to va_list operand if necessary.
2278
7a37fa90
MM
22792015-05-15 Mikhail Maltsev <maltsevm@gmail.com>
2280
2281 PR c/48956
2282 * c-common.c (int_safely_convertible_to_real_p): Define.
2283 (unsafe_conversion_p): Check conversions involving complex types.
2284 (conversion_warning): Add new warning message for conversions which
2285 discard imaginary component.
2286 * c-common.h: (enum conversion_safety): Add new enumerator for such
2287 conversions.
2288
3aa3c9fc
MP
22892015-05-14 Marek Polacek <polacek@redhat.com>
2290
2291 PR c/66066
2292 PR c/66127
2293 * c-common.c (c_fully_fold): Pass false down to c_fully_fold_internal.
2294 (c_fully_fold_internal): Fold C_MAYBE_CONST_EXPRs with
2295 C_MAYBE_CONST_EXPR_INT_OPERANDS set. Add FOR_INT_CONST argument and
2296 use it. If FOR_INT_CONST, require that all evaluated operands be
2297 INTEGER_CSTs.
2298
c3388e62
DM
22992015-05-12 David Malcolm <dmalcolm@redhat.com>
2300
2301 * c-common.h (warn_for_misleading_indentation): New prototype.
2302 * c-indentation.c: New file.
2303 * c.opt (Wmisleading-indentation): New option.
2304
c7b38fd5
TV
23052015-05-12 Tom de Vries <tom@codesourcery.com>
2306
2307 PR tree-optimization/66010
2308 * c-common.c (build_va_arg): Don't mark ap addressable unless necessary.
2309
381bf11e
JM
23102015-05-09 Jason Merrill <jason@redhat.com>
2311
edff0c06
JM
2312 * c-opts.c (c_common_post_options): Also clear
2313 cpp_opts->cpp_warn_cxx11_compat.
2314
129211bc
JM
2315 * c-common.h (enum cxx_dialect): Add cxx_unset.
2316 * c-common.c (cxx_dialect): Initialize to cxx_unset.
2317 * c-opts.c (c_common_post_options): Set C++ dialect to C++98 if unset.
2318
381bf11e
JM
2319 * c.opt (std=c++14): Remove Undocumented flag and experimental warning.
2320 (std=gnu++0x): Mark as Undocumented.
2321 (std=gnu++1y): Add deprecated message.
2322
fe191308
JM
23232015-05-08 Jason Merrill <jason@redhat.com>
2324
765189ff
JM
2325 * c.opt (Wc++11-compat): Make primary. Rename var warn_cxx11_compat.
2326 * c-opts.c: Adjust.
2327
fe191308
JM
2328 * c.opt (Wc++0x-compat): Also set cpp_warn_cxx11_compat.
2329
755e528f
MP
23302015-05-08 Marek Polacek <polacek@redhat.com>
2331
2332 PR c/64918
2333 * c.opt (Woverride-init-side-effects): New option.
2334
0173bd2a
MP
23352015-05-07 Marek Polacek <polacek@redhat.com>
2336
2337 PR c/65179
2338 * c-common.c (c_fully_fold_internal): Warn when left shifting a
2339 negative value.
2340 * c.opt (Wshift-negative-value): New option.
2341 * c-opts.c (c_common_post_options): Set warn_shift_negative_value
2342 when -Wextra and C99/C++11 mode.
2343
e0f0d3b9
MP
23442015-05-07 Marek Polacek <polacek@redhat.com>
2345 Martin Uecker <uecker@eecs.berkeley.edu>
2346
2347 * c-ubsan.c (ubsan_instrument_bounds): Don't skip instrumenting
2348 flexible member array-like members if SANITIZE_BOUNDS_STRICT.
2349
8243e2a9
JM
23502015-05-05 Jason Merrill <jason@redhat.com>
2351
2352 * c.opt (Wterminate): New.
2353
577cd070
MP
23542015-04-30 Marek Polacek <polacek@redhat.com>
2355
2356 * c-common.c (maybe_warn_bool_compare): When comparing with 0/1,
2357 require that the non-constant be of a boolean type.
2358
0373796b
JT
23592015-04-29 Josh Triplett <josh@joshtriplett.org>
2360
e0f0d3b9
MP
2361 * c-common.c (handle_section_attribute): Refactor to reduce
2362 nesting and distinguish between error cases.
0373796b 2363
716c0ba6
MP
23642015-04-29 Marek Polacek <polacek@redhat.com>
2365
2366 PR c/64610
2367 * c-common.c (maybe_warn_bool_compare): Warn when comparing a boolean
2368 with 0/1.
2369
8848828b
JJ
23702015-04-29 Jakub Jelinek <jakub@redhat.com>
2371
2372 * c-common.h (omp_clause_mask): Unconditionally define as a class.
2373 Use uint64_t instead of unsigned HOST_WIDE_INT and 64 instead of
2374 HOST_BITS_PER_WIDE_INT.
2375
ecd0e562
TV
23762015-04-28 Tom de Vries <tom@codesourcery.com>
2377
2378 PR tree-optimization/65887
2379 * c-common.c (build_va_arg): Mark va_arg ap argument as addressable.
2380
2a877204 23812015-04-28 Eric Botcazou <ebotcazou@adacore.com>
e0f0d3b9 2382 Pierre-Marie de Rodat <derodat@adacore.com>
2a877204
EB
2383
2384 * c-ada-spec.c (in_function): Delete.
2385 (dump_generic_ada_node): Do not change in_function and remove the
2386 redundant code dealing with it.
2387 (print_ada_declaration): Do not change in_function. Use INDENT_INCR.
2388 (print_ada_methods): Output the static member functions in a nested
2389 package after the regular methods as well as associated renamings.
2390
4853031e
MP
23912015-04-24 Marek Polacek <polacek@redhat.com>
2392
2393 PR c/65830
2394 * c-common.c (c_fully_fold_internal): Use OPT_Wshift_count_negative
2395 and OPT_Wshift_count_overflow.
2396
8c2b7f79
MP
2397 PR c/63357
2398 * c-common.c (warn_logical_operator): Warn if the operands have the
2399 same expressions.
2400
b8787813
MP
24012015-04-24 Marek Polacek <polacek@redhat.com>
2402
2403 PR c/61534
2404 * c-common.c (warn_logical_operator): Bail if either operand comes
2405 from a macro expansion.
2406
8fba1830
BRF
24072015-04-10 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
2408
2409 PR target/55143
2410 * c-common.c (c_default_pointer_mode): Add definition.
2411 * c-common.h (c_default_pointer_mode): Add declaration.
2412
17958621
JJ
24132015-03-11 Jakub Jelinek <jakub@redhat.com>
2414
2415 * c-common.c (c_common_nodes_and_builtins): Don't call xstrdup
2416 on record_builtin_type argument.
2417
7ccb1a11
JJ
24182015-03-10 Jakub Jelinek <jakub@redhat.com>
2419
2420 PR c/65120
2421 * c-common.c (warn_logical_not_parentheses): Don't warn for
2422 !x == 0 or !x != 0.
2423
04fd785e
MP
24242015-03-07 Marek Polacek <polacek@redhat.com>
2425
2426 PR sanitizer/65280
2427 * c-ubsan.c (ubsan_instrument_bounds): Check for COMPONENT_REF
2428 before trying to figure out whether we have a flexible array member.
2429
a4e26206
EB
24302015-03-06 Eric Botcazou <ebotcazou@adacore.com>
2431 Jonathan Wakely <jwakely.gcc@gmail.com>
2432
2433 * c-ada-spec.c (dump_ada_double_name): Fix pasto.
2434
0d2489f4
EB
24352015-03-05 Eric Botcazou <ebotcazou@adacore.com>
2436
2437 PR ada/65319
2438 * c-ada-spec.c (print_destructor): Remove obsolete code.
2439
83ed54d7
EB
24402015-03-01 Eric Botcazou <ebotcazou@adacore.com>
2441
2442 * c-ada-spec.c (is_tagged_type): Add guard for DECL_VINDEX.
2443 (dump_template_types): Adjust DECL_TEMPLATE_INSTANTIATIONS and
2444 DECL_TEMPLATE_RESULT emulations.
2445 (dump_ada_template)): Add guard for TYPE_METHODS.
2446
7631f0e2
MP
24472015-02-27 Marek Polacek <polacek@redhat.com>
2448
2449 PR c/65040
2450 * c.opt (Wformat-signedness): Don't enable by -Wformat=2.
2451
d1783ae5
KT
24522015-02-27 Kai Tietz <ktietz@redhat.com>
2453
2454 PR c/35330
2455 * c-pragma.c (handle_pragma_weak): Do not try to create
2456 weak/alias of declarations not being function, or variable
2457 declarations.
2458
56a9f6bc
TS
24592015-02-24 Thomas Schwinge <thomas@codesourcery.com>
2460
2461 PR libgomp/64625
2462 * c-common.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
2463 Remove macros.
2464 (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
2465
3d5cb23d
MP
24662015-02-16 Marek Polacek <polacek@redhat.com>
2467
2468 PR c/65066
2469 * c-format.c (check_format_types): Handle null param.
2470
fa008882
MP
24712015-02-13 Marek Polacek <polacek@redhat.com>
2472
2473 PR c/65040
2474 * c-format.c (check_format_types): Don't warn about different
2475 signedness if the original value is in the range of WANTED_TYPE.
2476
785f21af
JM
24772015-02-12 Jason Merrill <jason@redhat.com>
2478
2479 PR c++/64956
2480 * c-opts.c (c_common_post_options): Change flag_abi_version from 0
2481 to the current highest version.
2482 * c-cppbuiltin.c (c_cpp_builtins): Assert that it isn't 0.
2483
4886ec8e
JJ
24842015-02-04 Jakub Jelinek <jakub@redhat.com>
2485
2486 PR c/64824
2487 PR c/64868
2488 * c-omp.c (c_finish_omp_atomic): Use TRUNC_DIV_EXPR
2489 instead of RDIV_EXPR. Use build_binary_op instead of
2490 build2_loc.
2491
40fecdd6
JM
24922015-01-30 Joseph Myers <joseph@codesourcery.com>
2493
2494 * c-opts.c, c-pch.c, cppspec.c: All callers of fatal_error changed
2495 to pass input_location as first argument.
2496
a0c88d06
TV
24972015-01-23 Tom de Vries <tom@codesourcery.com>
2498
2499 PR libgomp/64672
2500 * c.opt (fopenacc): Mark as LTO option.
2501
1506ae0e
TV
25022015-01-23 Tom de Vries <tom@codesourcery.com>
2503
2504 PR libgomp/64707
2505 * c.opt (fopenmp): Mark as LTO option.
2506
31be63ab
JJ
25072015-01-21 Jakub Jelinek <jakub@redhat.com>
2508
2509 PR c/63307
b1726d6c 2510 * cilk.c (fill_decls_vec): Only put decls into vector v.
31be63ab
JJ
2511 (compare_decls): Fix up formatting.
2512
25132015-01-21 Igor Zamyatin <igor.zamyatin@intel.com>
2514
2515 PR c/63307
2516 * cilk.c: Include vec.h.
2517 (struct cilk_decls): New structure.
2518 (wrapper_parm_cb): Split this function to...
2519 (fill_decls_vec): ...this...
2520 (create_parm_list): ...and this.
2521 (compare_decls): New function.
2522 (for_local_cb): Remove.
2523 (wrapper_local_cb): Ditto.
2524 (build_wrapper_type): For now first traverse and fill vector of
2525 declarations then sort it and then deal with sorted vector.
2526 (cilk_outline): Ditto.
2527 (declare_one_free_variable): Ditto.
2528
6875457f
JM
25292015-01-21 Jason Merrill <jason@redhat.com>
2530
2531 PR c++/64629
2532 * c-format.c (check_format_arg): Call decl_constant_value.
2533
185c9e56
ML
25342015-01-19 Martin Liska <mliska@suse.cz>
2535
2536 * c-common.c (handle_noicf_attribute): New function.
2537
41dbbb37
TS
25382015-01-15 Thomas Schwinge <thomas@codesourcery.com>
2539 Bernd Schmidt <bernds@codesourcery.com>
2540 James Norris <jnorris@codesourcery.com>
2541 Cesar Philippidis <cesar@codesourcery.com>
2542 Ilmir Usmanov <i.usmanov@samsung.com>
2543 Jakub Jelinek <jakub@redhat.com>
2544
2545 * c.opt (fopenacc): New option.
2546 * c-cppbuiltin.c (c_cpp_builtins): Conditionally define _OPENACC.
2547 * c-common.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
2548 New macros.
2549 * c-common.h (c_finish_oacc_wait): New prototype.
2550 * c-omp.c: Include "omp-low.h" and "gomp-constants.h".
2551 (c_finish_oacc_wait): New function.
2552 * c-pragma.c (oacc_pragmas): New variable.
2553 (c_pp_lookup_pragma, init_pragma): Handle it.
2554 * c-pragma.h (enum pragma_kind): Add PRAGMA_OACC_CACHE,
2555 PRAGMA_OACC_DATA, PRAGMA_OACC_ENTER_DATA, PRAGMA_OACC_EXIT_DATA,
2556 PRAGMA_OACC_KERNELS, PRAGMA_OACC_LOOP, PRAGMA_OACC_PARALLEL,
2557 PRAGMA_OACC_UPDATE, PRAGMA_OACC_WAIT.
2558 (enum pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_ASYNC,
2559 PRAGMA_OACC_CLAUSE_AUTO, PRAGMA_OACC_CLAUSE_COLLAPSE,
2560 PRAGMA_OACC_CLAUSE_COPY, PRAGMA_OACC_CLAUSE_COPYIN,
2561 PRAGMA_OACC_CLAUSE_COPYOUT, PRAGMA_OACC_CLAUSE_CREATE,
2562 PRAGMA_OACC_CLAUSE_DELETE, PRAGMA_OACC_CLAUSE_DEVICE,
2563 PRAGMA_OACC_CLAUSE_DEVICEPTR, PRAGMA_OACC_CLAUSE_FIRSTPRIVATE,
2564 PRAGMA_OACC_CLAUSE_GANG, PRAGMA_OACC_CLAUSE_HOST,
2565 PRAGMA_OACC_CLAUSE_IF, PRAGMA_OACC_CLAUSE_NUM_GANGS,
2566 PRAGMA_OACC_CLAUSE_NUM_WORKERS, PRAGMA_OACC_CLAUSE_PRESENT,
2567 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY,
2568 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN,
2569 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT,
2570 PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE, PRAGMA_OACC_CLAUSE_PRIVATE,
2571 PRAGMA_OACC_CLAUSE_REDUCTION, PRAGMA_OACC_CLAUSE_SELF,
2572 PRAGMA_OACC_CLAUSE_SEQ, PRAGMA_OACC_CLAUSE_VECTOR,
2573 PRAGMA_OACC_CLAUSE_VECTOR_LENGTH, PRAGMA_OACC_CLAUSE_WAIT,
2574 PRAGMA_OACC_CLAUSE_WORKER.
2575
3f8257db 25762015-01-14 Marcos Diaz <marcos.diaz@tallertechnologies.com>
5434dc07
MD
2577
2578 * c-cppbuiltin.c (c_cpp_builtins): New cpp define __SSP_EXPLICIT__
2579 for the new option fstack-protector_explicit.
2580 * c-common.c (c_common_attribute_table): Add stack_protect attribute.
2581 (handle_stack_protect_attribute): New function.
2582
3f8257db 25832015-01-13 Martin Uecker <uecker@eecs.berkeley.edu>
de1b5c17
MU
2584
2585 * c.opt: New option -Warray-bounds=.
2586
adfac8df
JJ
25872015-01-09 Michael Collison <michael.collison@linaro.org>
2588
2589 * array-notation-common.c: Include hash-set.h, machmode.h,
2590 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2591 fold-const.h, wide-int.h, and inchash.h due to flattening of tree.h.
2592 * c-ada-spec.c: Ditto.
2593 * c-cilkplus.c: Ditto.
2594 * c-common.c: Include input.h due to flattening of tree.h.
2595 Define macro GCC_C_COMMON_C.
2596 * c-common.h: Flatten tree.h header files into c-common.h.
2597 Remove include of tree-core.h.
2598 * c-cppbuiltin.c: Include hash-set.h, machmode.h,
2599 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2600 fold-const.h, wide-int.h, and inchash.h due to
2601 flattening of tree.h.
2602 * c-dump.c: Ditto.
2603 * c-format.c: Flatten tree.h header files into c-common.h.
2604 * c-cppbuiltin.c: Include hash-set.h, machmode.h,
2605 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2606 fold-const.h, wide-int.h, and inchash.h due to
2607 flattening of tree.h.
2608 * c-dump.c: Include hash-set.h, machmode.h,
2609 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2610 fold-const.h, wide-int.h, and inchash.h due to
2611 flattening of tree.h.
2612 * c-format.c: Include hash-set.h, machmode.h,
2613 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2614 fold-const.h, wide-int.h, inchash.h and real.h due to
2615 flattening of tree.h.
2616 * c-gimplify.c: Include hash-set.h, machmode.h,
2617 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
2618 fold-const.h, wide-int.h, and inchash.h due to
2619 flattening of tree.h.
2620 * cilk.c: Ditto.
2621 * c-lex.c: Ditto.
2622 * c-omp.c: Ditto.
2623 * c-opts.c: Ditto.
2624 * c-pch.c: Ditto.
2625 * c-ppoutput.c: Ditto.
2626 * c-pragma.c: Ditto.
2627 * c-pretty-print.c: Ditto.
2628 * c-semantics.c: Ditto.
2629 * c-ubsan.c: Ditto.
2630 * stub-objc.c: Ditto.
2631
f5481fc4
JM
26322015-01-08 Jason Merrill <jason@redhat.com>
2633
2634 * c-ubsan.c (ubsan_maybe_instrument_array_ref): Use
2635 do_ubsan_in_current_function.
2636 (ubsan_maybe_instrument_reference_or_call): Likewise.
2637 * c-ubsan.h: Declare it.
2638
de35aa66
MS
26392015-01-08 Mike Stump <mikestump@comcast.net>
2640
2641 * c-common.c (c_common_attribute_table): Add no_sanitize_thread.
2642
4a9a42ab
MP
26432015-01-07 Marek Polacek <polacek@redhat.com>
2644
2645 PR c/64440
2646 * c-common.c (c_fully_fold_internal): Warn for division and modulo
2647 if orig_op1 isn't INTEGER_CST, op1 is INTEGER_CST and is zero.
2648
2f42e5de
TS
26492015-01-05 Trevor Saunders <tsaunders@mozilla.com>
2650
2651 PR c++/31397
2652 * c.opt (Wsuggest-override): New option.
2653
5624e564
JJ
26542015-01-05 Jakub Jelinek <jakub@redhat.com>
2655
2656 Update copyright years.
2657
5bd012f8
MP
26582015-01-05 Marek Polacek <polacek@redhat.com>
2659
2660 PR c/64423
2661 * c-common.c (warn_array_subscript_with_type_char): Add location_t
2662 parameter. Use it.
2663 * c-common.h (warn_array_subscript_with_type_char): Update
2664 declaration.
2665
a7fa8d18
ESR
26662014-12-20 Edward Smith-Rowland <3dw4rd@verizon.net>
2667
2668 * c-cppbuiltin.c (__cpp_sized_deallocation): Uncomment and move macro.
2669 Control macro with flag_sized_deallocation.
2670
3f8257db 26712014-12-20 Martin Uecker <uecker@eecs.berkeley.edu>
768952be
MU
2672
2673 * c.opt (Wdiscarded-array-qualifiers): New option.
2674
1f8d3e84
JJ
26752014-12-19 Jakub Jelinek <jakub@redhat.com>
2676
2677 PR preprocessor/63831
2678 * c-cppbuiltin.c (c_cpp_builtins): Don't define __has_attribute
2679 and __has_cpp_attribute here.
2680 * c-ppoutput.c (init_pp_output): Set cb->has_attribute to
2681 c_common_has_attribute.
2682 * c-common.h (c_common_has_attribute): New prototype.
2683 * c-lex.c (init_c_lex): Set cb->has_attribute to
2684 c_common_has_attribute instead of cb_has_attribute.
2685 (get_token_no_padding): New function.
2686 (cb_has_attribute): Renamed to ...
2687 (c_common_has_attribute): ... this. No longer static. Use
2688 get_token_no_padding, require ()s, don't build TREE_LIST
2689 unnecessarily, fix up formatting, adjust diagnostics, call
2690 init_attributes.
2691
20b06add
JM
26922014-12-15 Jason Merrill <jason@redhat.com>
2693
2694 * c.opt (-fsized-deallocation, -Wc++14-compat): New.
2695 (-Wsized-deallocation): New.
2696 * c-opts.c (c_common_post_options): -fsized-deallocation defaults
2697 to on in C++14 and up.
2698
94a073b2
JM
26992014-12-11 Jason Merrill <jason@redhat.com>
2700
acaa5911
JM
2701 * c-cppbuiltin.c (c_cpp_builtins): Enable C++14 __cpp_constexpr.
2702
94a073b2
JM
2703 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_runtime_arrays if
2704 we aren't complaining about VLAs.
2705
7fb66c15
MP
27062014-12-06 Marek Polacek <polacek@redhat.com>
2707
2708 PR tree-optimization/64183
2709 * c-gimplify.c (c_gimplify_expr): Don't convert the RHS of a
2710 shift-expression if it is integer_type_node. Use types_compatible_p.
2711
b731b390
JJ
27122014-11-29 Jakub Jelinek <jakub@redhat.com>
2713
2714 * c-common.c (convert_vector_to_pointer_for_subscript): Remove NULL
2715 last argument from create_tmp_var_raw and create_tmp_var calls.
2716 * cilk.c (gimplify_cilk_spawn): Likewise.
2717 * c-omp.c (c_finish_omp_atomic): Likewise.
2718
6a4da643
MP
27192014-11-28 Marek Polacek <polacek@redhat.com>
2720
2721 * c-ubsan.c (ubsan_instrument_shift): Use op1_utype for MINUS_EXPR
2722 instead of unsigned_type_node.
2723
541e35a6
MP
27242014-11-28 Marek Polacek <polacek@redhat.com>
2725
2726 PR c/63862
2727 * c-ubsan.c (ubsan_instrument_shift): Change the type of a MINUS_EXPR
2728 to op1_utype.
2729 * c-gimplify.c (c_gimplify_expr): Convert right operand of a shift
2730 expression to unsigned_type_node.
2731
dcc97066
MW
27322014-11-20 Mark Wielaard <mjw@redhat.com>
2733
2734 PR debug/38757
2735 * c-opts.c (set_std_c89): Set lang_hooks.name.
2736 (set_std_c99): Likewise.
2737 (set_std_c11): Likewise.
2738 (set_std_cxx98): Likewise.
2739 (set_std_cxx11): Likewise.
2740 (set_std_cxx14): Likewise.
2741 (set_std_cxx1z): Likewise.
2742
aa7da51a
JJ
27432014-11-21 Jakub Jelinek <jakub@redhat.com>
2744
2745 PR target/63764
2746 * c-common.h (convert_vector_to_pointer_for_subscript): Change
2747 return type to bool.
009a3480 2748 * c-common.c: Include gimple-expr.h.
aa7da51a
JJ
2749 (convert_vector_to_pointer_for_subscript): Change return type to
2750 bool. If *vecp is not lvalue_p and has VECTOR_TYPE, return true
2751 and copy it into a TARGET_EXPR and use that instead of *vecp
2752 directly.
2753
538dd0b7
DM
27542014-11-19 David Malcolm <dmalcolm@redhat.com>
2755
2756 Merger of git branch "gimple-classes-v2-option-3".
2757 * ChangeLog.gimple-classes: New.
2758 * c-gimplify.c (add_block_to_enclosing): Strengthen local "stack"
2759 from being just a vec<gimple> to a vec<gbind *>.
2760
c39a5e99
JJ
27612014-11-18 Jakub Jelinek <jakub@redhat.com>
2762
2763 PR sanitizer/63813
2764 * c-ubsan.c (ubsan_maybe_instrument_reference_or_call): Change type
2765 argument to ptype, set type to TREE_TYPE (ptype). Don't call
2766 get_pointer_alignment for non-pointers. Use ptype, or if it is
2767 reference type, corresponding pointer type, as type of kind
2768 argument.
2769 (ubsan_maybe_instrument_reference,
2770 ubsan_maybe_instrument_member_call): Adjust callers.
2771
8537a4a9
MP
27722014-11-15 Marek Polacek <polacek@redhat.com>
2773
2774 PR middle-end/63884
2775 * array-notation-common.c (is_sec_implicit_index_fn): Return false
2776 for NULL fndecl.
2777 (extract_array_notation_exprs): Return for NULL node.
2778
2079956a
JM
27792014-11-12 Joseph Myers <joseph@codesourcery.com>
2780
2781 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Define and
2782 undefine __NO_MATH_ERRNO__ based on changes to -fmath-errno state.
2783
1304953e
JJ
27842014-11-12 Jakub Jelinek <jakub@redhat.com>
2785
2786 PR c/59708
2787 * c-common.c (check_builtin_function_arguments): Handle
2788 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW.
2789
e5e44252
AK
27902014-11-10 Andi Kleen <ak@linux.intel.com>
2791
2792 PR c/60804
2793 * c-common.h (check_no_cilk): Declare.
2794 * cilk.c (get_error_location): New function.
2795 (check_no_cilk): Dito.
2796
e64b984d
AK
27972014-11-10 Andi Kleen <ak@linux.intel.com>
2798
2799 * cilk.c (recognize_spawn): Use expression location
2800 for error message.
2801
13c21655
PC
28022014-11-10 Paolo Carlini <paolo.carlini@oracle.com>
2803
2804 * c.opt ([Wshift-count-negative, Wshift-count-overflow]): Add.
2805
42fd12b1
ESR
28062014-11-10 Edward Smith-Rowland <3dw4rd@verizon.net>
2807
2808 * c-cppbuiltin.c (__has_attribute, __has_cpp_attribute): New macros;
2809 (__cpp_rtti, __cpp_exceptions): New macros for C++98;
2810 (__cpp_range_based_for, __cpp_initializer_lists,
2811 __cpp_delegating_constructors, __cpp_nsdmi,
2812 __cpp_inheriting_constructors, __cpp_ref_qualifiers): New macros
2813 for C++11; (__cpp_attribute_deprecated): Remove in favor of
2814 __has_cpp_attribute.
2815 * c-lex.c (cb_has_attribute): New callback CPP function;
2816 (init_c_lex): Set has_attribute callback.
2817
6f450181
RB
28182014-11-04 Richard Biener <rguenther@suse.de>
2819
2820 * c-common.c (shorten_compare): Do not shorten mixed
2821 DFP and non-DFP compares.
2822
26f0e1d6
ESR
28232014-11-01 Edward Smith-Rowland <3dw4rd@verizon.net>
2824
2825 * g++.dg/cpp1y/feat-cxx11.C: Commentary and rearrangement of tests.
2826 * g++.dg/cpp1y/feat-cxx11-neg.C: Add aggregate NSDMI test.
2827 Commentary and rearrangement of tests.
2828 * g++.dg/cpp1y/feat-cxx14.C: Enable aggregate NSDMI test.
2829 Commentary and rearrangement of tests.
2830 * g++.dg/cpp1y/feat-cxx98-neg.C: Ditto
2831 * g++.dg/cpp1y/feat-cxx98.C: Commentary.
2832
ef4bddc2
RS
28332014-10-29 Richard Sandiford <richard.sandiford@arm.com>
2834
2835 * c-common.c, c-common.h, c-cppbuiltin.c, c-lex.c: Remove redundant
2836 enum from machine_mode.
2837
c582198b
AM
28382014-10-28 Andrew MacLeod <amacleod@redhat.com>
2839
adfac8df
JJ
2840 * c-common.c: Adjust include files.
2841 * c-gimplify.c: Ditto.
2842 * cilk.c: Ditto.
2843 * c-pragma.c: Ditto.
2844 * c-ubsan.c: Ditto.
c582198b 2845
60393bbc
AM
28462014-10-27 Andrew MacLeod <amacleod@redhat.com>
2847
2848 * c-gimplify.c: Adjust include files.
2849
d723bb7c
MLI
28502014-10-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
2851
2852 PR c++/53061
2853 * c-opts.c (c_common_diagnostics_set_defaults): Renamed from
2854 c_common_initialize_diagnostics.
2855 * c-common.h: Likewise.
2856
90f3520e
MP
28572014-10-24 Marek Polacek <polacek@redhat.com>
2858
2859 PR c/56980
2860 * c-pretty-print.c (c_pretty_printer::simple_type_specifier): Don't
2861 print "struct"/"union"/"enum" for typedefed names.
2862
59d7607a
MP
28632014-10-23 Marek Polacek <polacek@redhat.com>
2864
2865 * c-ubsan.c (ubsan_instrument_shift): Perform the MINUS_EXPR
2866 in unsigned type.
2867
d95a2703
JJ
28682014-10-22 Jakub Jelinek <jakub@redhat.com>
2869 Yury Gribov <y.gribov@samsung.com>
2870
2871 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
2872 ubsan_instrument_vla): Check bits in flag_sanitize_recover bitmask
2873 instead of flag_sanitize_recover as bool flag.
2874
8e6ef852
KY
28752014-10-21 Kirill Yukhin <kirill.yukhin@intel.com>
2876
2877 * cilk.c: Revert previous change.
2878
948cf550
IZ
28792014-10-20 Igor Zamyatin <igor.zamyatin@intel.com>
2880
2881 PR c/63307
2882 * cilk.c: Include vec.h.
2883 (struct cilk_decls): New structure.
2884 (wrapper_parm_cb): Split this function to...
2885 (fill_decls_vec): ...this...
2886 (create_parm_list): ...and this.
2887 (compare_decls): New function.
2888 (for_local_cb): Remove.
2889 (wrapper_local_cb): Ditto.
2890 (build_wrapper_type): For now first traverse and fill vector of
2891 declarations then sort it and then deal with sorted vector.
2892 (cilk_outline): Ditto.
2893 (declare_one_free_variable): Ditto.
2894
92574c7c
MP
28952014-10-17 Marek Polacek <polacek@redhat.com>
2896
2897 * c-opts.c (c_common_post_options): Set warn_implicit_int.
2898 * c.opt (Wimplicit-int): Initialize to -1.
2899
83685514
AM
29002014-10-16 Andrew MacLeod <amacleod@redhat.com>
2901
2902 * c-pragma.c: Adjust include files.
2903 * c-semantics.c: Likewise.
2904
5b8300ea
DD
29052014-10-16 DJ Delorie <dj@redhat.com>
2906
2907 * c-cppbuiltin.c (cpp_atomic_builtins): Don't assume pointers are
2908 multiples of bytes.
2909
5f83e90b
JM
29102014-10-14 Jason Merrill <jason@redhat.com>
2911
2912 PR c++/63455
2913 * c-common.h (CPP_PREPARSED_EXPR): New.
2914 (N_CP_TTYPES): Adjust.
2915
d73326ca
MP
29162014-10-15 Marek Polacek <polacek@redhat.com>
2917
2918 * c-opts.c (c_common_init_options): Make -std=gnu11 the default for C.
2919
78a7c317
DD
29202014-10-14 DJ Delorie <dj@redhat.com>
2921
2922 * c-pretty-print.c (pp_c_integer_constant): Check for all __intN
2923 types, not just __int128.
2924 * c-cppbuiltin.c (c_cpp_builtins): Add builtins for all __intN
2925 types, not just __int128.
2926 (cpp_atomic_builtins): Round pointer sizes up.
2927 (type_suffix): Use type precision, not specific types.
2928 * c-common.c (c_common_reswords): Remove __int128 special case.
2929 (c_common_type_for_size): Check for all __intN types, not just
2930 __int128.
2931 (c_common_type_for_mode): Likewise.
2932 (c_common_signed_or_unsigned_type): Likewise.
2933 (c_build_bitfield_integer_type): Likewise.
2934 (c_common_nodes_and_builtins): Likewise.
2935 (keyword_begins_type_specifier): Likewise.
2936 * c-common.h (rid): Remove RID_INT128 and add RID_INT_N_* for all
2937 __intN variants.
2938
2a22f99c
TS
29392014-10-12 Trevor Saunders <tsaunders@mozilla.com>
2940
2941 * c-common.c: Use hash_table instead of hashtab.
2942
2a8ef767
ESR
29432014-10-06 Edward Smith-Rowland <3dw4rd@verizon.net>
2944
adfac8df 2945 * c-cppbuiltin.c: Move __cpp_attribute_deprecated to the
2a8ef767
ESR
2946 C++11 section.
2947
3c9aabbd
MG
29482014-10-03 Marc Glisse <marc.glisse@inria.fr>
2949
2950 PR c++/54427
2951 PR c++/57198
2952 PR c++/58845
2953 * c-common.c (warn_logical_operator): Punt for vectors.
2954
a15f7cb8
ESR
29552014-10-01 Edward Smith-Rowland <3dw4rd@verizon.net>
2956
2957 Implement SD-6: SG10 Feature Test Recommendations
2958 * c-cppbuiltin.c (c_cpp_builtins()): Define language feature
2959 macros and the __has_header macro.
2960
8d0cf15e
JM
29612014-09-30 Jason Merrill <jason@redhat.com>
2962
dd5d5481
JM
2963 * c-common.h (enum rid): Add RID_IS_TRIVIALLY_ASSIGNABLE and
2964 RID_IS_TRIVIALLY_CONSTRUCTIBLE.
2965 * c-common.c (c_common_reswords): Add __is_trivially_copyable.
2966
b752325e
JM
2967 * c-common.h (enum rid): Add RID_IS_TRIVIALLY_COPYABLE.
2968 * c-common.c (c_common_reswords): Add __is_trivially_copyable.
2969
8d0cf15e
JM
2970 * c-common.h (enum rid): Remove RID_IS_CONVERTIBLE_TO.
2971 * c-common.c (c_common_reswords): Remove __is_convertible_to.
2972
083e891e
MP
29732014-09-24 Marek Polacek <polacek@redhat.com>
2974
2975 PR c/61405
2976 PR c/53874
2977 * c-common.h (struct c_common_resword): Don't define CPP_KEYWORD.
2978
7861b648
AK
29792014-09-23 Andi Kleen <ak@linux.intel.com>
2980
2981 * c-common.c (handle_no_reorder_attribute): New function.
2982 (c_common_attribute_table): Add no_reorder attribute.
2983
9a79452d
JM
29842014-09-22 Joseph Myers <joseph@codesourcery.com>
2985
2986 * c-cppbuiltin.c (c_cpp_builtins): Define
2987 __LIBGCC_*_EXCESS_PRECISION__ macros for supported floating-point
2988 modes.
2989
dd69f047
JM
29902014-09-18 Joseph Myers <joseph@codesourcery.com>
2991
2992 * c-cppbuiltin.c (c_cpp_builtins): Define __LIBGCC_*_FUNC_EXT__
2993 for supported floating-point modes.
2994
737a4826
MLI
29952014-09-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
2996
2997 * c.opt (Wpsabi): Use LangEnabledBy.
2998 * c-opts.c (c_common_handle_option): Do not handle here.
2999
8cc4b7a2
JM
30002014-09-12 Joseph Myers <joseph@codesourcery.com>
3001
3002 * c-cppbuiltin.c (c_cpp_builtins): Define __LIBGCC_HAS_%s_MODE__
3003 macros for floating-point modes.
3004
179b5a55
MG
30052014-09-11 Marc Glisse <marc.glisse@inria.fr>
3006
3007 PR target/58757
3008 * c-cppbuiltin.c (builtin_define_float_constants): Correct
3009 __*_DENORM_MIN__ without denormals.
3010
570a11fe
JJ
30112014-09-10 Jakub Jelinek <jakub@redhat.com>
3012
3013 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
3014 ubsan_instrument_vla, ubsan_instrument_return): Adjust
3015 ubsan_create_data callers.
3016 (ubsan_instrument_bounds): Don't emit UBSAN_BOUNDS at all if
3017 index is constant or BIT_AND_EXPR with constant mask and is
3018 small enough for the bound.
3019 * c-gimplify.c (ubsan_walk_array_refs_r): For ADDR_EXPR of
3020 ARRAY_REF, make sure the inner ARRAY_REF is not walked again.
3021
b559c810
MLI
30222014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
3023
3024 * c.opt: Add CppReason to various flags.
3025 (Wdate-time): Re-sort.
3026 * c-common.c: Include c-common.h earlier.
3027 (struct reason_option_codes_t): Delete.
3028 (c_option_controlling_cpp_error): Prefix global type and struct
3029 with cpp_.
3030
1ef33fd4
MLI
30312014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
3032
3033 * c.opt (Wnormalized): New.
3034 (Wnormalized=): Use Enum and Reject Negative.
3035 * c-opts.c (c_common_handle_option): Do not handle Wnormalized here.
3036
66bb34c0
JM
30372014-09-08 Joseph Myers <joseph@codesourcery.com>
3038
3039 * c-cppbuiltin.c (c_cpp_builtins): Define macros for mantissa
3040 digits of floating-point modes if -fbuilding-libgcc.
3041
53d68b9f
JM
30422014-09-05 Joseph Myers <joseph@codesourcery.com>
3043
3044 * c-cppbuiltin.c (c_cpp_builtins): Also define
3045 __LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__,
3046 __LIBGCC_EH_FRAME_SECTION_NAME__, __LIBGCC_JCR_SECTION_NAME__,
3047 __LIBGCC_CTORS_SECTION_ASM_OP__, __LIBGCC_DTORS_SECTION_ASM_OP__,
3048 __LIBGCC_TEXT_SECTION_ASM_OP__, __LIBGCC_INIT_SECTION_ASM_OP__,
3049 __LIBGCC_INIT_ARRAY_SECTION_ASM_OP__,
3050 __LIBGCC_STACK_GROWS_DOWNWARD__,
3051 __LIBGCC_DONT_USE_BUILTIN_SETJMP__,
3052 __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__,
3053 __LIBGCC_DWARF_FRAME_REGISTERS__,
3054 __LIBGCC_EH_RETURN_STACKADJ_RTX__, __LIBGCC_JMP_BUF_SIZE__,
3055 __LIBGCC_STACK_POINTER_REGNUM__ and
3056 __LIBGCC_VTABLE_USES_DESCRIPTORS__ for -fbuilding-libgcc.
3057 (builtin_define_with_value): Handle backslash-escaping in string
3058 macro values.
3059
f65586dc
RB
30602014-09-05 Richard Biener <rguenther@suse.de>
3061
3062 PR middle-end/63148
3063 * c-format.c (check_format_arg): Properly handle
3064 effectively signed POINTER_PLUS_EXPR offset.
3065
2b71f4a4
MLI
30662014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
3067
3068 * c.opt (Wc90-c99-compat,Wc++-compat,Wcomment,Wendif-labels,
3069 Winvalid-pch,Wlong-long,Wmissing-include-dirs,Wmultichar,Wpedantic,
3070 (Wdate-time,Wtraditional,Wundef,Wvariadic-macros): Add CPP, Var
3071 and Init.
3072 * c-opts.c (c_common_handle_option): Do not handle here.
3073 (sanitize_cpp_opts): Likewise.
3074 * c-common.c (struct reason_option_codes_t): Handle
3075 CPP_W_C90_C99_COMPAT and CPP_W_PEDANTIC.
3076
d2e4feca
MP
30772014-09-03 Marek Polacek <polacek@redhat.com>
3078
3079 * c.opt (Wlogical-not-parentheses): Enable by -Wall.
3080
9a771876
JJ
30812014-09-02 Jakub Jelinek <jakub@redhat.com>
3082 Balaji V. Iyer <balaji.v.iyer@intel.com>
3083 Igor Zamyatin <igor.zamyatin@intel.com>
3084
3085 * c-cilkplus.c (cilk_for_number_of_iterations): New function.
3086 * c-common.c (c_common_reswords): Added _Cilk_for.
3087 * c-common.h (enum rid): Added RID_CILK_FOR.
3088 (cilk_for_number_of_iterations): Add declaration.
3089 * c-omp.c (c_finish_omp_for): Added checks for CILK_SIMD and
3090 CILK_FOR.
3091 * c-pragma.c (init_pragma): Register "grainsize" pragma.
3092 * c-pragma.h (enum pragma_kind): Add PRAGMA_CILK_GRAINSIZE.
3093
81b5d104
MLI
30942014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
3095
3096 * c.opt (Wbuiltin-macro-redefined,Wdeprecated,Wendif-labels,
3097 Winvalid-pch,Wliteral-suffix,Wmissing-include-dirs,Wtrigraphs,
3098 Wundef): Use CPP, Var and Init.
3099 * c-opts.c (c_common_handle_option): Do not handle the above flags here.
3100
b753b37b
MLI
31012014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
3102
3103 * c.opt (Wbuiltin-macro-redefined): Use CPP, Var and Init.
3104 * c-opts.c (c_common_handle_option): Do not handle here.
3105
028aee17
JM
31062014-08-25 Jason Merrill <jason@redhat.com>
3107
3108 * c.opt: Change -std=c++1y and -std=gnu++1y to be aliases for
3109 -std=c++14 and -std=gnu++14, rather than the reverse.
3110 * c-opts.c (c_common_handle_option): Change OPT_std_c__1y and
3111 OPT_std_gnu__1y to OPT_std_c__14 and OPT_std_gnu__14.
3112 * c-common.h (cxx_dialect): Remove cxx1y.
3113
e4276ba5
ESR
31142014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
3115
3116 * c-common.h (enum cxx_dialect): Add cxx14.
3117 * c-opts.c (set_std_cxx1y): Rename to set_std_cxx14; Use cxx14.
3118 * c-ubsan.c (ubsan_instrument_shift): Change comment and logic from
3119 cxx_dialect == cxx11 || cxx_dialect == cxx1y to cxx_dialect >= cxx11.
3120
a545cacd
JM
31212014-08-22 Jason Merrill <jason@redhat.com>
3122
3123 * c.opt (std=gnu++17): Fix alias.
3124
59ea0364
MP
31252014-08-22 Marek Polacek <polacek@redhat.com>
3126
3127 PR c++/62199
3128 * c-common.c (warn_logical_not_parentheses): Don't check LHS. Don't
3129 check for vector types. Drop LHS argument.
3130 * c-common.h (warn_logical_not_parentheses): Adjust.
3131
596e808c
MLI
31322014-08-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
3133
3134 * c.opt (Wcomment): Use CPP, Var and LangEnabledBy.
3135 (Wmultichar): Likewise.
3136 (Wdate-time): Use C-family languages instead of Common. Use CPP
3137 and Var.
3138 * c-opts.c (c_common_handle_option): Do not handle the above
3139 options here.
3140 (sanitize_cpp_opts): Likewise.
3141
18767f65
MLI
31422014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
3143
3144 PR fortran/44054
3145 * c-opts.c: Include tree-diagnostics.h.
3146 (c_diagnostic_finalizer): New.
3147 (c_common_initialize_diagnostics): Use it.
3148
b4413594
MLI
31492014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
3150
3151 PR preprocessor/51303
3152 * c-common.c (struct reason_option_codes_t option_codes):
3153 Add CPP_W_MISSING_INCLUDE_DIRS. Sort alphabetically.
3154
43f9a13c
MLI
31552014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
3156
3157 PR c/60975
3158 PR c/53063
3159 * c.opt (Wvariadic-macros): Use CPP and LangEnabledBy.
3160 * c-opts.c (c_common_handle_option): Call cpp_handle_option_auto.
3161 (c_common_post_options): Call init_global_opts_from_cpp.
3162 (sanitize_cpp_opts): Do not handle Wvariadic-macros here.
3163
04159acf
MP
31642014-08-19 Marek Polacek <polacek@redhat.com>
3165
3166 PR c++/62153
3167 * c-common.c (maybe_warn_bool_compare): New function.
3168 * c-common.h (maybe_warn_bool_compare): Declare.
3169 * c.opt (Wbool-compare): New option.
3170
35aff4fb
MP
31712014-08-19 Marek Polacek <polacek@redhat.com>
3172
3173 * c.opt (Wc99-c11-compat): New option.
3174
177cce46
MP
31752014-08-19 Marek Polacek <polacek@redhat.com>
3176
3177 * c-opts.c (sanitize_cpp_opts): Make warn_long_long be set according
3178 to warn_c90_c99_compat.
3179 * c.opt (Wc90-c99-compat, Wdeclaration-after-statement): Initialize
3180 to -1.
3181
6ae9194f
MLI
31822014-08-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
3183 Steven Bosscher <steven@gcc.gnu.org>
3184
3185 PR c/52952
3186 * c-format.c: Add extra_arg_loc and format_string_loc to struct
3187 format_check_results.
3188 (check_function_format): Use true and add comment for boolean
3189 argument.
3190 (finish_dollar_format_checking): Use explicit location when warning.
3191 (check_format_info): Likewise.
3192 (check_format_arg): Set extra_arg_loc and format_string_loc.
3193 (check_format_info_main): Use explicit location when warning.
3194 (check_format_types): Pass explicit location.
3195 (format_type_warning): Likewise.
3196
8e54f6d3
MLI
31972014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
3198
3199 PR fortran/44054
3200 * c-format.c: Handle Fortran flags.
3201
cd4e76fc
IZ
32022014-08-12 Igor Zamyatin <igor.zamyatin@intel.com>
3203
3204 PR other/61962
3205 * array-notation-common.c (find_rank): Added handling for other
3206 types of references.
3207
f3bede71
MP
32082014-08-10 Marek Polacek <polacek@redhat.com>
3209
3210 PR c/51849
3211 * c-opts.c (sanitize_cpp_opts): Pass warn_c90_c99_compat to libcpp.
3212 * c.opt (Wc90-c99-compat): Add option.
3213
9f25a338
TS
32142014-08-07 Trevor Saunders <tsaunders@mozilla.com>
3215
3216 * c-gimplify.c, cilk.c: Remove includes of pointer-set.h.
3217
62e4eb35
MP
32182014-08-03 Marek Polacek <polacek@redhat.com>
3219
3220 * c-common.c (check_case_value): Add location_t parameter. Use it.
3221 (c_add_case_label): Pass loc to check_case_value.
3222
b787e7a2
TS
32232014-08-02 Trevor Saunders <tsaunders@mozilla.com>
3224
3225 * cilk.c: Use hash_map instead of pointer_map.
3226
6e2830c3
TS
32272014-08-02 Trevor Saunders <tsaunders@mozilla.com>
3228
3229 * c-gimplify.c: Use hash_set instead of pointer_set.
3230
a7ee52fb
IZ
32312014-08-01 Igor Zamyatin <igor.zamyatin@intel.com>
3232
3233 PR middle-end/61455
3234 * array-notation-common.c (extract_array_notation_exprs): Handling
3235 of DECL_EXPR added.
3236
944fa280
JJ
32372014-08-01 Jakub Jelinek <jakub@redhat.com>
3238
3239 * c-common.h (min_align_of_type): Removed prototype.
3240 * c-common.c (min_align_of_type): Removed.
3241 * c-ubsan.h (ubsan_maybe_instrument_reference,
3242 ubsan_maybe_instrument_member_call): New prototypes.
3243 * c-ubsan.c: Include stor-layout.h and builtins.h.
3244 (ubsan_maybe_instrument_reference_or_call,
3245 ubsan_maybe_instrument_reference, ubsan_maybe_instrument_call): New
3246 functions.
3247
b4dfdc11
MG
32482014-07-31 Marc Glisse <marc.glisse@inria.fr>
3249
3250 PR c++/60517
3251 * c.opt (-Wreturn-local-addr): Move to common.opt.
3252
a41844e5
JM
32532014-07-30 Jason Merrill <jason@redhat.com>
3254
3255 PR c++/61659
3256 PR c++/61687
3257 Revert:
3258 * c.opt (-fuse-all-virtuals): New.
3259
976d5a22
TT
32602014-07-30 Tom Tromey <tromey@redhat.com>
3261
3262 PR c/59855
3263 * c.opt (Wdesignated-init): New option.
3264 * c-common.c (c_common_attribute_table): Add "designated_init".
3265 (handle_designated_init): New function.
3266
cdc94aca
MP
32672014-07-24 Marek Polacek <polacek@redhat.com>
3268
3269 PR c/57653
3270 * c-opts.c (c_finish_options): If -imacros is in effect, return.
3271
f41373b6
DS
32722014-07-16 Dodji Seketeli <dodji@redhat.com>
3273
3274 PR preprocessor/60723 - missing system-ness marks for macro tokens
3275 * c-ppoutput.c (struct print::prev_was_system_token): New data
3276 member.
3277 (init_pp_output): Initialize it.
3278 (maybe_print_line_1, maybe_print_line, print_line_1, print_line)
3279 (do_line_change): Return a flag saying if a line marker was
3280 emitted or not.
3281 (scan_translation_unit): Detect if the system-ness of the token we
3282 are about to emit is different from the one of the previously
3283 emitted token. If so, emit a line marker. Avoid emitting useless
3284 adjacent line markers. Avoid emitting line markers for tokens
3285 originating from the expansion of built-in macros.
3286 (scan_translation_unit_directives_only): Adjust.
3287
4d661eaa
MP
32882014-07-15 Marek Polacek <polacek@redhat.com>
3289
3290 * c-ubsan.c (ubsan_instrument_bounds): Don't instrument if
3291 TYPE_MAX_VALUE is NULL.
3292
b108f48f
JJ
32932014-07-14 Jakub Jelinek <jakub@redhat.com>
3294
3295 PR middle-end/61294
3296 * c.opt (Wmemset-transposed-args): New warning.
3297
c0221884
JM
32982014-07-10 Jason Merrill <jason@redhat.com>
3299
3300 PR c++/61659
3301 PR c++/61687
3302 * c.opt (-fuse-all-virtuals): New.
3303
63dfbb95
RB
33042014-07-09 Richard Biener <rguenther@suse.de>
3305
3306 PR c-family/61741
3307 * c-gimplify.c (c_gimplify_expr): Gimplify self-modify expressions
3308 using unsigned arithmetic if overflow does not wrap instead of
3309 if overflow is undefined.
3310
773ec47f
MP
33112014-07-06 Marek Polacek <polacek@redhat.com>
3312
3313 PR c/6940
3314 * c.opt (Wsizeof-array-argument): New option.
3315
00a7ba58
JJ
33162014-07-03 Jakub Jelinek <jakub@redhat.com>
3317
b1726d6c 3318 * c-ada-spec.c (dump_ada_nodes): Don't call qsort if
00a7ba58
JJ
3319 comments->count <= 1, as comments->entries might be NULL.
3320
52ec0ea3
MP
33212014-07-01 Marek Polacek <polacek@redhat.com>
3322
3323 * c.opt (Wint-conversion): New option.
3324
d5c3d343
MP
33252014-07-01 Marek Polacek <polacek@redhat.com>
3326
3327 PR c/58286
3328 * c.opt (Wincompatible-pointer-types): New option.
3329
6e7ceb17
PC
33302014-06-30 Paolo Carlini <paolo.carlini@oracle.com>
3331
3332 PR c++/51400
3333 * c-common.c (handle_noreturn_attribute, handle_const_attribute):
3334 Do not discard TYPE_QUALS of type.
3335
da73100b
JM
33362014-06-26 Jason Merrill <jason@redhat.com>
3337
3338 * c-common.h (enum cxx_dialect): Add cxx1z.
3339 * c.opt (std=c++1z, std=c++17, std=gnu++1z, std=gnu++17): New.
3340 * c-opts.c (c_common_handle_option, set_std_cxx1z): Handle it.
3341
08eedf75
TJ
33422014-06-26 Teresa Johnson <tejohnson@google.com>
3343
3344 * c-common.h (get_dump_info): Declare.
3345 * c-gimplify.c (c_genericize): Use saved dump files.
3346 * c-opts.c (c_common_parse_file): Begin and end dumps
3347 once around parsing invocation.
3348 (get_dump_info): New function.
3349
7b56b2f8
MP
33502014-06-23 Marek Polacek <polacek@redhat.com>
3351 Andrew MacLeod <amacleod@redhat.com>
3352
3353 PR c/61553
3354 * c-common.c (get_atomic_generic_size): Don't segfault if the
3355 type doesn't have a size.
3356
0e37a2f3
MP
33572014-06-20 Marek Polacek <polacek@redhat.com>
3358
3359 * c-gimplify.c: Include "c-ubsan.h" and "pointer-set.h".
3360 (ubsan_walk_array_refs_r): New function.
3361 (c_genericize): Instrument array bounds.
3362 * c-ubsan.c: Include "internal-fn.h".
3363 (ubsan_instrument_division): Mark instrumented arrays as having
3364 side effects. Adjust ubsan_type_descriptor call.
3365 (ubsan_instrument_shift): Likewise.
3366 (ubsan_instrument_vla): Adjust ubsan_type_descriptor call.
3367 (ubsan_instrument_bounds): New function.
3368 (ubsan_array_ref_instrumented_p): New function.
3369 (ubsan_maybe_instrument_array_ref): New function.
3370 * c-ubsan.h (ubsan_instrument_bounds): Declare.
3371 (ubsan_array_ref_instrumented_p): Declare.
3372 (ubsan_maybe_instrument_array_ref): Declare.
3373
33742014-06-20 Hale Wang <hale.wang@arm.com>
dd6fe7d4
HW
3375
3376 PR lto/61123
3377 * c.opt (fshort-enums): Add to LTO.
3378 * c.opt (fshort-wchar): Likewise.
3379
5c3d09f7
MP
33802014-06-16 Marek Polacek <polacek@redhat.com>
3381
3382 PR c/60439
3383 * c.opt (Wswitch-bool): Add Var.
3384
9cf32741
JJ
33852014-06-12 Jakub Jelinek <jakub@redhat.com>
3386
3387 PR middle-end/61486
3388 * c-omp.c (c_omp_split_clauses): Don't crash on firstprivate in
3389 #pragma omp target teams or
3390 #pragma omp {,target }teams distribute simd.
3391
62984918
JM
33922014-06-12 Jason Merrill <jason@redhat.com>
3393
3394 * c.opt (Wabi=, fabi-compat-version): New.
3395 * c-opts.c (c_common_handle_option): Handle -Wabi=.
3396 (c_common_post_options): Handle flag_abi_compat_version default.
3397 Disallow -fabi-compat-version=1.
3398 * c-common.h (abi_version_crosses): New.
3399
f961457f
JH
34002014-06-11 Jan Hubicka <hubicka@ucw.cz>
3401
adfac8df 3402 * c-common.c (handle_section_attribute): Update handling for
f961457f
JH
3403 section names that are no longer trees.
3404
92d28cbb
JJ
34052014-06-10 Jakub Jelinek <jakub@redhat.com>
3406
3407 PR fortran/60928
3408 * c-pragma.c (omp_pragmas_simd): Move PRAGMA_OMP_TASK...
3409 (omp_pragmas): ... back here.
3410
742938c9
MP
34112014-06-05 Marek Polacek <polacek@redhat.com>
3412
3413 PR c/49706
3414 * c-common.c (warn_logical_not_parentheses): New function.
3415 * c-common.h (warn_logical_not_parentheses): Declare.
3416 * c.opt (Wlogical-not-parentheses): New option.
3417
9d548dfb
MP
34182014-06-04 Marek Polacek <polacek@redhat.com>
3419
3420 PR c/30020
3421 * c-common.c (check_case_bounds): Add location parameter.
3422 Use it.
3423 (c_add_case_label): Pass loc to check_case_bounds.
3424
fedfecef
MP
34252014-06-03 Marek Polacek <polacek@redhat.com>
3426
3427 PR c/60439
3428 * c.opt (Wswitch-bool): New option.
3429
f6a7cffc
TS
34302014-05-22 Thomas Schwinge <thomas@codesourcery.com>
3431
040d18b6
TS
3432 * c-common.h (c_omp_sharing_predetermined, c_omp_remap_decl):
3433 Remove prototypes.
3434 (record_types_used_by_current_var_decl): Move prototype to where
3435 it belongs.
3436
f6a7cffc
TS
3437 * c-common.c (DEF_FUNCTION_TYPE_0, DEF_FUNCTION_TYPE_6)
3438 (DEF_FUNCTION_TYPE_7, DEF_FUNCTION_TYPE_8)
3439 (DEF_FUNCTION_TYPE_VAR_5): Cosmetic fixes.
3440
632f2871
RS
34412014-05-21 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
3442
3443 * c-common.h (CTI_VOID_ZERO, void_zero_node): Delete.
3444 * c-common.c (c_common_nodes_and_builtins): Don't initialize
3445 void_zero_node.
3446 * c-pretty-print.c (pp_c_void_constant): New function.
3447 (c_pretty_printer::constant, c_pretty_printer::primary_expression)
3448 (c_pretty_printer::expression): Handle VOID_CST.
3449 * cilk.c (extract_free_variables): Likewise.
3450 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift)
3451 (ubsan_instrument_vla): Use void_node instead of void_zero_node.
3452
766090c2
TS
34532014-05-17 Trevor Saunders <tsaunders@mozilla.com>
3454
3455 * c-common.h (sorted_fields_type): Remove variable_size GTY attribute.
3456 * c-pragma.c (push_alignment): Adjust.
3457 (handle_pragma_push_options): Likewise.
3458
661a0813
MP
34592014-05-09 Marek Polacek <polacek@redhat.com>
3460
3461 PR c/50459
3462 * c-common.c (check_user_alignment): Return -1 if alignment is error
3463 node.
3464 (handle_aligned_attribute): Don't call default_conversion on
3465 FUNCTION_DECLs.
3466 (handle_vector_size_attribute): Likewise.
3467 (handle_tm_wrap_attribute): Handle case when wrap_decl is error node.
3468 (handle_sentinel_attribute): Call default_conversion and allow even
3469 integral types as an argument.
3470
2793eeab
MP
34712014-05-08 Marek Polacek <polacek@redhat.com>
3472
3473 PR c/61053
3474 * c-common.c (min_align_of_type): New function factored out from...
3475 (c_sizeof_or_alignof_type): ...here.
3476 * c-common.h (min_align_of_type): Declare.
3477
f827930a
MP
34782014-05-08 Marek Polacek <polacek@redhat.com>
3479
3480 PR c/61077
3481 * c-common.c (check_main_parameter_types): Warn for _Atomic-qualified
3482 parameter type of main.
3483
ca49b74e
DD
34842014-05-07 DJ Delorie <dj@redhat.com>
3485
3486 * c-cppbuiltin.c (print_bits_of_hex): New.
3487 (builtin_define_type_minmax): Print values using hex so as not to
3488 require a pre-computed list of string values.
3489
1d60af08
KZ
34902014-05-06 Kenneth Zadeck <zadeck@naturalbridge.com>
3491 Mike Stump <mikestump@comcast.net>
3492 Richard Sandiford <rdsandiford@googlemail.com>
3493
3494 * c-ada-spec.c: Include wide-int.h.
3495 (ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX): Remove.
3496 (dump_generic_ada_node): Use wide-int interfaces.
3497 * c-common.c: Include wide-int-print.h.
3498 (shorten_compare): Use wide-int interfaces and tree_int_cst_lt.
3499 (pointer_int_sum): Use wide-int interfaces.
3500 (c_common_nodes_and_builtins): Use make_int_cst.
3501 (match_case_to_enum_1): Use tree_fits_uhwi_p and tree_fits_shwi_p.
3502 (handle_alloc_size_attribute): Use wide-int interfaces.
3503 (get_nonnull_operand): Likewise.
3504 * c-format.c (get_constant): Use tree_fits_uhwi_p.
3505 * c-lex.c: Include wide-int.h.
3506 (narrowest_unsigned_type): Take a widest_int rather than two
3507 HOST_WIDE_INTs.
3508 (narrowest_signed_type): Likewise.
3509 (interpret_integer): Update accordingly. Use wide-int interfaces.
3510 (lex_charconst): Use wide-int interfaces.
3511 * c-pretty-print.c: Include wide-int.h.
3512 (pp_c_integer_constant): Use wide-int interfaces.
3513 * cilk.c (declare_one_free_variable): Use tree_int_cst_lt instead of
3514 INT_CST_LT_UNSIGNED.
3515
b15458be
RB
35162014-05-06 Richard Biener <rguenther@suse.de>
3517
3518 * c-opts.c (c_common_post_options): For -freestanding,
3519 -fno-hosted and -fno-builtin disable pattern recognition
3520 if not enabled explicitely.
3521
6577374e
MP
35222014-05-02 Marek Polacek <polacek@redhat.com>
3523
3524 * c.opt (Wsizeof-pointer-memaccess): Describe option.
3525
d00887e8
MP
35262014-05-01 Marek Polacek <polacek@redhat.com>
3527
3528 PR c/43245
3529 * c.opt (Wdiscarded-qualifiers): Add.
3530
f8ed5150
MP
35312014-04-30 Marek Polacek <polacek@redhat.com>
3532
3533 * c-ubsan.c (ubsan_instrument_division): Handle REAL_TYPEs. Perform
3534 INT_MIN / -1 sanitization only for integer types.
3535
45484dcf
MP
35362014-04-25 Marek Polacek <polacek@redhat.com>
3537
3538 PR c/18079
3539 * c-common.c (handle_noinline_attribute): Warn if the attribute
3540 conflicts with always_inline attribute.
3541 (handle_always_inline_attribute): Warn if the attribute conflicts
3542 with noinline attribute.
3543
38e514c0
MP
35442014-04-25 Marek Polacek <polacek@redhat.com>
3545
3546 PR c/60156
3547 * c-common.c (check_main_parameter_types): Warn about variadic main.
3548
44875f92
MS
35492014-04-24 Mike Stump <mikestump@comcast.net>
3550
3551 * c.opt (Wshadow-ivar): Default to on.
3552
dcaaa5a0
DP
35532014-04-24 Dimitris Papavasiliou <dpapavas@gmail.com>
3554
3555 * c.opt (Wshadow-ivar, flocal-ivars, fivar-visibility): Add.
3556
c07d7c02
MP
35572014-04-23 Marek Polacek <polacek@redhat.com>
3558
3559 * c-common.c (handle_tm_wrap_attribute): Tweak error message.
3560
1c33c9b7
JJ
35612014-04-22 Jakub Jelinek <jakub@redhat.com>
3562
3563 PR sanitizer/60275
3564 * c-ubsan.c (ubsan_instrument_return): Return __builtin_trap ()
3565 if flag_sanitize_undefined_trap_on_error.
3566 (ubsan_instrument_division, ubsan_instrument_shift,
3567 ubsan_instrument_vla): Likewise. Use __ubsan_handle_*_abort ()
3568 if !flag_sanitize_recover.
3569
793c625f
MG
35702014-04-22 Marc Glisse <marc.glisse@inria.fr>
3571
3572 PR libstdc++/43622
3573 * c-common.c (registered_builtin_types): Make non-static.
3574 * c-common.h (registered_builtin_types): Declare.
3575
b0f1bf36
RB
35762014-04-14 Richard Biener <rguenther@suse.de>
3577 Marc Glisse <marc.glisse@inria.fr>
3578
3579 PR c/60819
3580 * c-common.c (convert_vector_to_pointer_for_subscript): Properly
3581 apply may-alias the scalar pointer type when applicable.
3582
3b07fa4a
IZ
35832014-04-12 Igor Zamyatin <igor.zamyatin@intel.com>
3584
3585 PR middle-end/60467
3586 * cilk.c (cilk_set_spawn_marker): Remove FUNCTION_DECL
3587 as possible argument for Cilk_spawn.
3588
cbbd2b1c
TB
35892014-04-11 Tobias Burnus <burnus@net-b.de>
3590
3591 PR c/60194
3592 * c.opt (Wformat-signedness): Add
3593 * c-format.c(check_format_types): Use it.
3594
6415bd5d
JM
35952014-04-11 Jason Merrill <jason@redhat.com>
3596
3597 PR c++/57926
3598 * c-common.c (sync_resolve_size, get_atomic_generic_size): Call
3599 default_conversion for an array argument.
3600
6525783a
MP
36012014-04-08 Marek Polacek <polacek@redhat.com>
3602
3603 PR sanitizer/60745
3604 * c-ubsan.c: Include asan.h.
3605 (ubsan_instrument_return): Call initialize_sanitizer_builtins.
3606
880a467b
NS
36072014-04-03 Nathan Sidwell <nathan@codesourcery.com>
3608
3609 * c.opt (Wnon-virtual-dtor): Auto set when Weffc++.
3610
7b59ff2d
MP
36112014-04-02 Marek Polacek <polacek@redhat.com>
3612
3613 * c-common.h (c_expand_expr): Remove declaration.
3614
8edbfaa6
JJ
36152014-03-28 Jakub Jelinek <jakub@redhat.com>
3616
3617 PR c++/60689
3618 * c-common.c (add_atomic_size_parameter): When creating new
3619 params vector, push the size argument first.
3620
07d72e1d
JJ
36212014-03-26 Jakub Jelinek <jakub@redhat.com>
3622
3623 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
3624 ubsan_instrument_vla, ubsan_instrument_return): Adjust
3625 ubsan_create_data callers.
3626
b35e0fa0
JJ
36272014-03-22 Jakub Jelinek <jakub@redhat.com>
3628
3629 PR debug/60603
3630 * c-opts.c (c_finish_options): Restore cb_file_change call to
3631 <built-in>.
3632
39a1ebb3
JJ
36332014-03-13 Jakub Jelinek <jakub@redhat.com>
3634
3635 PR middle-end/36282
3636 * c-pragma.c (apply_pragma_weak): Only look at
3637 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) if
3638 DECL_ASSEMBLER_NAME_SET_P (decl).
3639 (maybe_apply_pending_pragma_weaks): Exit early if
3640 vec_safe_is_empty (pending_weaks) rather than only when
3641 !pending_weaks.
3642 (maybe_apply_pragma_weak): Likewise. If !DECL_ASSEMBLER_NAME_SET_P,
3643 set assembler name back to NULL afterwards.
3644
a07f6ed2
JM
36452014-03-11 Jason Merrill <jason@redhat.com>
3646
3647 * c.opt: Add -std=gnu++14.
3648
75b107f5
IB
36492014-03-11 Ian Bolton <ian.bolton@arm.com>
3650
3651 * c-opts.c (c_common_post_options): Don't override
3652 -ffp-contract=fast if unsafe-math-optimizations is on.
3653
f42c637e
PM
36542014-03-08 Paulo Matos <paulo@matos-sorge.com>
3655
3656 * c.opt: Enable LTO FE for fshort-double.
3657
70e24808
JM
36582014-03-07 Jason Merrill <jason@redhat.com>
3659
3660 * c.opt: Add -std=c++14.
3661
3af9c5e9
MP
36622014-03-06 Marek Polacek <polacek@redhat.com>
3663
3664 PR c/60197
3665 * cilk.c (contains_cilk_spawn_stmt): New function.
3666 (contains_cilk_spawn_stmt_walker): Likewise.
3667 (recognize_spawn): Give error on invalid use of _Cilk_spawn.
3668 * c-common.h (contains_cilk_spawn_stmt): Add declaration.
3669
b3bdf019
JJ
36702014-03-03 Jakub Jelinek <jakub@redhat.com>
3671
3672 * c-pragma.c (c_pp_lookup_pragma): Handle PRAGMA_CILK_SIMD.
3673 (init_pragma): Call cpp_register_deferred_pragma for PRAGMA_CILK_SIMD
3674 even when flag_preprocess_only.
3675
ca7e759d
JM
36762014-02-26 Jason Merrill <jason@redhat.com>
3677
3678 PR c++/59231
3679 PR c++/11586
3680 * c-common.c (shorten_compare): Don't check
3681 c_inhibit_evaluation_warnings.
3682
28e41874
JJ
36832014-02-19 Jakub Jelinek <jakub@redhat.com>
3684
cca615af
JJ
3685 PR c/37743
3686 * c-common.c (c_common_nodes_and_builtins): When initializing
3687 c_uint{16,32,64}_type_node, also set corresponding
3688 uint{16,32,64}_type_node to the same value.
3689
28e41874
JJ
3690 PR c++/60267
3691 * c-pragma.c (init_pragma): Don't call cpp_register_deferred_pragma
3692 for PRAGMA_IVDEP if flag_preprocess_only.
3693
c2bf53a1
JJ
36942014-02-12 Jakub Jelinek <jakub@redhat.com>
3695
3696 PR c/60101
3697 * c-common.c (merge_tlist): If copy is true, call new_tlist,
3698 if false, add ADD itself, rather than vice versa.
3699 (verify_tree): For COND_EXPR, don't call merge_tlist with non-zero
3700 copy. For SAVE_EXPR, only call merge_tlist once.
3701
8fcbce72
JJ
37022014-02-08 Jakub Jelinek <jakub@redhat.com>
3703
3704 PR middle-end/60092
3705 * c-common.c (handle_alloc_size_attribute): Use tree_fits_uhwi_p
3706 and tree_to_uhwi.
3707 (handle_alloc_align_attribute, handle_assume_aligned_attribute): New
3708 functions.
3709 (c_common_attribute_table): Add alloc_align and assume_aligned
3710 attributes.
3711
0a756a3f
MP
37122014-02-06 Marek Polacek <polacek@redhat.com>
3713
3714 PR c/60087
3715 * c-common.c (warn_for_sign_compare): Call warning_at with location
3716 instead of warning.
3717
7ec4847a
MP
37182014-02-05 Marek Polacek <polacek@redhat.com>
3719
3720 PR c/53123
3721 * c-omp.c (c_finish_omp_atomic): Remove unreachable return
3722 statement.
3723
66f20604
MP
37242014-02-04 Marek Polacek <polacek@redhat.com>
3725
3726 PR c/60036
3727 * c-common.c (conversion_warning): Unwrap C_MAYBE_CONST_EXPR and/or
3728 SAVE_EXPR.
3729
5d77fb19
MG
37302014-02-03 Marc Glisse <marc.glisse@inria.fr>
3731
3732 PR c++/53017
3733 PR c++/59211
3734 * c-common.c (handle_aligned_attribute, handle_alloc_size_attribute,
3735 handle_vector_size_attribute, handle_nonnull_attribute): Call
3736 default_conversion on the attribute argument.
3737 (handle_nonnull_attribute): Increment the argument number.
3738
81e5eca8
MP
37392014-01-31 Marek Polacek <polacek@redhat.com>
3740
3741 PR c/59963
3742 * c-common.c (add_atomic_size_parameter): Pass vNULL to
3743 build_function_call_vec.
3744 (resolve_overloaded_builtin): Likewise.
3745 * c-common.h (build_function_call_vec): Adjust declaration.
3746
68fca595
MP
37472014-01-30 Marek Polacek <polacek@redhat.com>
3748
3749 PR c/59940
3750 * c-common.h (unsafe_conversion_p): Adjust declaration.
3751 (warnings_for_convert_and_check): Likewise.
3752 (convert_and_check): Likewise.
3753 * c-common.c (unsafe_conversion_p): Add location parameter. Call
3754 expansion_point_location_if_in_system_header on it.
3755 (warnings_for_convert_and_check): Add location parameter. Call
3756 expansion_point_location_if_in_system_header on it. Use it.
3757 (convert_and_check): Add location parameter. Use it.
3758 (conversion_warning): Likewise.
3759 (c_add_case_label): Adjust convert_and_check calls.
3760 (scalar_to_vector): Adjust unsafe_conversion_p calls.
3761
b72271b9
BI
37622014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
3763
3764 * c-common.c (c_define_builtins): Replaced flag_enable_cilkplus with
3765 flag_cilkplus.
3766 * c-pragma.c (init_pragma): Likewise.
3767 * c.opt: Likewise.
3768
393e8e8b
MP
37692014-01-23 Marek Polacek <polacek@redhat.com>
3770
3771 PR c/59846
3772 * c-common.c (shorten_compare): Add location_t parameter.
3773 * c-common.h (shorten_binary_op): Adjust declaration.
3774
f04dda30
MP
37752014-01-23 Marek Polacek <polacek@redhat.com>
3776
3777 PR c/58346
3778 * c-common.c (pointer_to_zero_sized_aggr_p): New function.
3779 * c-common.h: Declare it.
3780
621955cb
EB
37812014-01-20 Eric Botcazou <ebotcazou@adacore.com>
3782
3783 * c-ada-spec.h (dump_ada_specs): Revert prototype change.
3784 * c-ada-spec.c (dump_ads): Likewise.
3785 (cpp_check): Likewise.
3786 (dump_ada_specs): Likewise.
3787
37882014-01-15 Laurent Alfonsi <laurent.alfonsi@st.com>
67bf2939
LA
3789
3790 PR c++/49718
3791 * c-common.c (handle_no_instrument_function_attribute): Allow
3792 no_instrument_function attribute in class member
3793 definition/declaration.
3794
241f845a
JJ
37952014-01-15 Jakub Jelinek <jakub@redhat.com>
3796
3797 PR c/58943
3798 * c-omp.c (c_finish_omp_atomic): Set in_late_binary_op around
3799 build_modify_expr with non-NOP_EXPR opcode. Handle return from it
3800 being COMPOUND_EXPR.
3801 (c_finish_omp_for): Handle incr being COMPOUND_EXPR with first
3802 operand a SAVE_EXPR and second MODIFY_EXPR.
3803
e83b8e2e
JJ
38042014-01-09 Jakub Jelinek <jakub@redhat.com>
3805
3806 PR target/58115
3807 * c-pch.c (c_common_write_pch): Call
3808 prepare_target_option_nodes_for_pch.
3809
23a5b65a
RS
38102014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
3811
3812 Update copyright years
3813
f9030485
RS
38142014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
3815
3816 * array-notation-common.c, c-cilkplus.c: Use the standard form for
3817 the copyright notice.
3818
f2aa696b
EB
38192013-12-28 Eric Botcazou <ebotcazou@adacore.com>
3820
3821 * c-ada-spec.c (print_constructor): New function.
3822 (print_destructor): Retrieve the origin of the destructor.
3823 (print_ada_declaration): Revamp handling of constructors/destructors.
3824
3f8257db 38252013-12-23 Stuart Hastings <stuart@apple.com>
1f26ac87
JM
3826 Bill Maddox <maddox@google.com>
3827 Jason Merrill <jason@redhat.com>
3828
3829 * c.opt: Add -fdeclone-ctor-dtor.
3830 * c-opts.c (c_common_post_options): Default to on iff -Os.
3831
41958c28
BI
38322013-12-18 Balaji V. Iyer <balaji.v.iyer@intel.com>
3833
3834 * c-common.c (c_common_attribute_table): Added "cilk simd function"
3835 attribute.
3836 * c-pragma.h (enum pragma_cilk_clause): Remove.
3837 (enum pragma_omp_clause): Added the following fields:
3838 PRAGMA_CILK_CLAUSE_NOMASK, PRAGMA_CILK_CLAUSE_MASK,
3839 PRAGMA_CILK_CLAUSE_VECTORLENGTH, PRAGMA_CILK_CLAUSE_NONE,
3840 PRAGMA_CILK_CLAUSE_LINEAR, PRAGMA_CILK_CLAUSE_PRIVATE,
3841 PRAGMA_CILK_CLAUSE_FIRSTPRIVATE, PRAGMA_CILK_CLAUSE_LASTPRIVATE,
3842 PRAGMA_CILK_CLAUSE_UNIFORM.
3843
b1726d6c 3844
12893402
BI
38452013-12-11 Balaji V. Iyer <balaji.v.iyer@intel.com>
3846
3847 * cilk.c (cilk_outline): Made this function non-static.
3848 (gimplify_cilk_spawn): Removed pre_p and post_p arguments.
3849 (create_cilk_wrapper): Added a new parameter: a function pointer.
3850 (c_install_body_w_frame_cleanup): Remove
3851 (extract_free_variables): Added VEC_INIT_EXPR and CONSTRUCTOR case.
3852 * c-common.h (cilk_outline): New prototype.
3853 (gimplify_cilk_spawn): Removed two parameters.
3854 (cilk_install_body_with_frame_cleanup): New prototype.
3855 * c-gimplify.c (c_gimplify_expr): Added MODIFY_EXPR, CALL_EXPR and
3856 CILK_SPAWN_STMT case.
3857
085b42ed
BS
38582013-12-11 Bernd Schmidt <bernds@codesourcery.com>
3859
2ce064c3
BS
3860 * c-common.c (c_fully_fold_internal): Handle ADDR_SPACE_CONVERT_EXPR.
3861
085b42ed
BS
3862 * c-common.h (enum c_tree_index): Remove CTI_INT_ARRAY_TYPE.
3863 (int_array_type_node): Remove.
3864 * c-common.c (c_common_nodes_and_builtins): Don't build it.
3865
9e36c9ed
MP
38662013-12-05 Marek Polacek <polacek@redhat.com>
3867
3868 PR c/52023
3869 * c-common.c (c_sizeof_or_alignof_type): Move a declaration into
3870 [ADJUST_FIELD_ALIGN].
3871
296674db
JM
38722013-12-04 Joseph Myers <joseph@codesourcery.com>
3873
3874 PR c/52023
3875 * c-common.c (c_sizeof_or_alignof_type): Add parameter min_alignof
3876 and check field alignment if set.
3877 * c-common.h (c_sizeof_or_alignof_type): Update prototype.
3878 (c_sizeof, c_alignof): Update calls to c_sizeof_or_alignof_type.
3879
b1726d6c 38802013-12-04 Jakub Jelinek <jakub@redhat.com>
31e071ae
MP
3881 Marek Polacek <polacek@redhat.com>
3882
3883 * c-gimplify.c (c_gimplify_expr): If doing the integer-overflow
3884 sanitization, call unsigned_type_for only when !TYPE_OVERFLOW_WRAPS.
3885
d7947e19
L
38862013-11-29 H.J. Lu <hongjiu.lu@intel.com>
3887
3888 PR c/59309
3889 * cilk.c (gimplify_cilk_spawn): Properly handle function without
3890 arguments.
3891
fad7652e
JJ
38922013-11-29 Jakub Jelinek <jakub@redhat.com>
3893
3894 PR c/59280
3895 * c-common.c (get_priority): If TREE_VALUE (args) is IDENTIFIER_NODE,
3896 goto invalid. If it is error_mark_node, don't issue further
3897 diagnostics.
3898
8b5e1202
SO
38992013-11-28 Sergey Ostanevich <sergos.gnu@gmail.com>
3900
3901 * c.opt (Wopenmp-simd): New.
3902
0a508bb6
JJ
39032013-11-22 Jakub Jelinek <jakub@redhat.com>
3904
3905 * c-ubsan.h (ubsan_instrument_return): New prototype.
3906 * c-ubsan.c (ubsan_instrument_return): New function.
3907
2fb9a547
AM
39082013-11-22 Andrew MacLeod <amacleod@redhat.com>
3909
3910 * c-common.c: Add required include files from gimple.h.
3911 * c-gimplify.c: Likewise
3912 * cilk.c: Likewise
3913
8400e75e
DM
39142013-11-22 David Malcolm <dmalcolm@redhat.com>
3915
3916 * c-common.c (unsafe_conversion_p): Remove use of
3917 EXPR_LOC_OR_HERE macro.
3918 (conversion_warning): Likewise.
3919 (warnings_for_convert_and_check): Likewise.
3920 (warn_for_collisions_1): Likewise.
3921 (shorten_compare): Likewise, and remove use of in_system_header
3922 macro, using the location from the former.
3923 * c-lex.c (dump_one_header): Remove use of input_filename macro.
3924 (cb_def_pragma): Remove use of in_system_header macro.
3925 (lex_string): Likewise.
3926 * c-pragma.c (handle_pragma_float_const_decimal64): Likewise.
3927
eb1ce453
KZ
39282013-11-20 Kenneth Zadeck <zadeck@naturalbridge.com>
3929 Mike Stump <mikestump@comcast.net>
3930 Richard Sandiford <rdsandiford@googlemail.com>
3931
3932 * c-ada-spec.c (is_simple_enum): Use tree_to_shwi and tree_to_uhwi
3933 instead of TREE_INT_CST_LOW, in cases where there is a protecting
3934 tree_fits_shwi_p or tree_fits_uhwi_p.
3935 (dump_generic_ada_node): Likewise.
3936 * c-format.c (check_format_arg): Likewise.
3937 * c-pretty-print.c (pp_c_integer_constant): Likewise.
3938
6b3b8c27
KZ
39392013-11-20 Kenneth Zadeck <zadeck@naturalbridge.com>
3940
3941 * c-common.c (check_function_arguments_recurse): Use tree_to_uhwi.
3942
49b0aa18
JC
39432013-11-19 Joshua J Cogliati <jrincayc@yahoo.com>
3944
3945 PR c/53001
3946 * c-common.c (unsafe_conversion_p): Make this function
3947 return an enumeration with more detail.
3948 (conversion_warning): Use the new return type of
3949 unsafe_conversion_p to separately warn either about conversions
3950 that lower floating point number precision or about the other
3951 kinds of conversions.
3952 * c-common.h (enum conversion_safety): New enumeration.
3953 (unsafe_conversion_p): switching return type to
3954 conversion_safety enumeration.
3955 * c.opt: Adding new warning -Wfloat-conversion and
3956 enabling it with -Wconversion.
3957
b826515a
BS
39582013-11-19 Basile Starynkevitch <basile@starynkevitch.net>
3959
3960 * c-opts.c: Include plugin.h.
3961 (cb_file_change): Invoke plugin event PLUGIN_INCLUDE_FILE.
3962
b9a55b13
MP
39632013-11-19 Marek Polacek <polacek@redhat.com>
3964
3965 * c-ubsan.c (ubsan_instrument_division): Adjust ubsan_create_data
3966 call.
3967 (ubsan_instrument_shift): Likewise.
3968 (ubsan_instrument_vla): Likewise.
3969
7d362f6c
RS
39702013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3971
3972 * c-common.c (convert_vector_to_pointer_for_subscript): Remove
3973 cast to unsigned type.
3974
386b1f1f
RS
39752013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3976
3977 * c-common.c (fold_offsetof_1): Use tree_to_uhwi rather than
3978 tree_low_cst.
3979 (complete_array_type): Update comment to refer to tree_to_[su]hwi
3980 rather than tree_low_cst.
3981
ae7e9ddd
RS
39822013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3983
3984 * c-common.c, c-cppbuiltin.c: Replace tree_low_cst (..., 1) with
3985 tree_to_uhwi throughout.
3986
9439e9a1
RS
39872013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3988
3989 * c-common.c, c-format.c, c-omp.c, c-pretty-print.c: Replace
3990 tree_low_cst (..., 0) with tree_to_shwi throughout.
3991
cc269bb6
RS
39922013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3993
3994 * c-ada-spec.c, c-common.c, c-pretty-print.c: Replace
3995 host_integerp (..., 1) with tree_fits_uhwi_p throughout.
3996
9541ffee
RS
39972013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
3998
3999 * c-ada-spec.c, c-common.c, c-format.c, c-pretty-print.c: Replace
4000 host_integerp (..., 0) with tree_fits_shwi_p throughout.
4001
c02065fc
AH
40022013-11-15 Aldy Hernandez <aldyh@redhat.com>
4003
4004 * c-cilkplus.c: New file.
4005 * c-common.c (readonly_error): Add location argument.
4006 * c-common.h (readonly_error): Same.
4007 (c_finish_cilk_clauses): Protoize.
4008 (c_check_cilk_loop): Same.
4009 c-omp.c (c_finish_omp_for): Handle CILK_SIMD nodes.
4010 Do not fail on error_mark_node.
4011 Abstract increment canonicalization to here...
4012 (c_omp_for_incr_canonicalize_ptr): New.
4013 c-pragma.c (init_pragma): Register "simd" pragma.
4014 c-pragma.h (enum pragma_kind): Add PRAGMA_CILK_SIMD.
4015 (enum pragma_cilk_clause): New.
4016
9cc65f15
RS
40172013-11-15 Richard Sandiford <rdsandiford@googlemail.com>
4018
4019 * c-pretty-print.c (pp_c_character_constant): Remove unnecessary
4020 wchar_type and host_integerp checks.
4021
18f429e2
AM
40222013-11-14 Andrew MacLeod <amacleod@redhat.com>
4023
4024 * c-common.c: Likewise.
4025 * c-gimplify.c: Likewise.
4026 * cilk.c: Likewise.
4027
d8a2d370
DN
40282013-11-14 Diego Novillo <dnovillo@google.com>
4029
4030 * c-common.c: Include fold-const.h.
4031 Include stor-layout.h.
4032 Include calls.h.
4033 Include stringpool.h.
4034 Include attribs.h.
4035 Include varasm.h.
4036 Include trans-mem.h.
4037 * c-cppbuiltin.c: Include stor-layout.h.
4038 Include stringpool.h.
4039 * c-format.c: Include stringpool.h.
4040 * c-lex.c: Include stringpool.h.
4041 Include stor-layout.h.
4042 * c-pragma.c: Include stringpool.h.
4043 Include attribs.h.
4044 Include varasm.h.
4045 Include gcc-symtab.h.
4046 * c-pretty-print.c: Include stor-layout.h.
4047 Include attribs.h.
4048 * cilk.c: Include stringpool.h.
4049 Include calls.h.
4050
38b7bc7f
JM
40512013-11-13 Joseph Myers <joseph@codesourcery.com>
4052
4053 * c-common.h (enum rid): Add RID_AUTO_TYPE.
4054 * c-common.c (c_common_reswords): Add __auto_type.
4055 (keyword_begins_type_specifier): Handle RID_AUTO_TYPE.
4056
45b0be94
AM
40572013-11-12 Andrew MacLeod <amacleod@redhat.com>
4058
18f429e2
AM
4059 * c-common.c: Include gimplify.h.
4060 * c-gimplify.c: Likewise.
4061 * cilk.c: Likewise.
4062 * c-omp.c: Include gimple-expr.h instead of gimple.h.
4063 * c-ubsan.c: Don't include gimple.h.
45b0be94 4064
582d9b50
JM
40652013-11-12 Joseph Myers <joseph@codesourcery.com>
4066
4067 * c-common.c (c_common_reswords): Add _Thread_local.
4068
6b28e197
JM
40692013-11-09 Joseph Myers <joseph@codesourcery.com>
4070
4071 * c-common.c (atomic_size_supported_p): New function.
4072 (resolve_overloaded_atomic_exchange)
4073 (resolve_overloaded_atomic_compare_exchange)
4074 (resolve_overloaded_atomic_load, resolve_overloaded_atomic_store):
4075 Use it instead of comparing size with a local list of sizes.
4076
267bac10
JM
40772013-11-07 Andrew MacLeod <amacleod@redhat.com>
4078 Joseph Myers <joseph@codesourcery.com>
4079
4080 * c-common.h (enum rid): Add RID_ATOMIC.
4081 * c-common.c (c_common_reswords): Add _Atomic.
4082 (sync_resolve_params): Use TYPE_MAIN_VARIANT on pointer argument.
4083 (keyword_is_type_qualifier): Accept RID_ATOMIC.
4084 * c-format.c (check_format_types): Check for extra _Atomic
4085 qualifiers in format argument.
4086 * c-pretty-print.c (pp_c_cv_qualifiers): Handle atomic qualifier.
4087 (pp_c_type_qualifier_list): Mention _Atomic in comment.
4088
5157b91e
TB
40892013-11-06 Tobias Burnus <burnus@net-b.de>
4090
4091 * c-common.c (reason_option_codes_t): Add CPP_W_DATE_TIME.
4092
6dbe0958
JM
40932013-11-06 Joseph Myers <joseph@codesourcery.com>
4094
4095 * c-opts.c (c_common_post_options): Set -ffp-contract=off in C
4096 standards modes.
4097 * c-cppbuiltin.c (cpp_iec_559_value): Consider -ffp-contract=fast
4098 to mean lack of IEEE 754 support.
4099
e8ff5196
TB
41002013-11-05 Tobias Burnus <burnus@net-b.de>
4101
4102 * c.opt (-Wdate-time): New option
4103 * c-opts.c (sanitize_cpp_opts): Pass on to libcpp.
4104
254a0760
JM
41052013-11-05 Joseph Myers <joseph@codesourcery.com>
4106
4107 * c-cppbuiltin.c (cpp_iec_559_value): Test
4108 flag_excess_precision_cmdline not flag_excess_precision.
4109
6d7f7e0a
TB
41102013-11-05 Tobias Burnus <burnus@net-b.de>
4111
4112 * c.opt (fopenmp-simd): New option.
4113 * c-pragma.c (omp_pragmas): Move pragmas which can contain simd to ...
4114 (omp_pragmas): ... this new struct.
4115 (c_pp_lookup_pragma): Also walk omp_pragmas.
4116 (init_pragma): Init pragmas for -fopenmp-simd.
4117
55a7f02f
MP
41182013-11-04 Marek Polacek <polacek@redhat.com>
4119
4120 PR c++/58979
4121 * c-common.c (invalid_indirection_error): Handle RO_ARROW_STAR case.
4122
9193fb05
JM
41232013-11-04 Joseph Myers <joseph@codesourcery.com>
4124
4125 * c-cppbuiltin.c (cpp_iec_559_value, cpp_iec_559_complex_value):
4126 New functions.
4127 (c_cpp_builtins): Define __GCC_IEC_559 and __GCC_IEC_559_COMPLEX.
4128
94159ecf
EB
41292013-11-04 Eric Botcazou <ebotcazou@adacore.com>
4130
4131 * c-ada-spec.h (cpp_operation): Add IS_TRIVIAL.
4132 (dump_ada_specs): Adjust prototype of second callback.
4133 * c-ada-spec.c (cpp_check): New global variable.
4134 (dump_ada_nodes): Remove cpp_check parameter and do not pass it down.
4135 (print_generic_ada_decl): Likewise.
4136 (has_static_fields): Change return type to bool and add guard.
4137 (has_nontrivial_methods): New predicate.
4138 (is_tagged_type): Change return type to bool.
4139 (separate_class_package): Call has_nontrivial_methods.
4140 (pp_ada_tree_identifier): Minor tweaks.
4141 (dump_ada_function_declaration): Adjust calls to dump_generic_ada_node.
4142 (dump_ada_array_domains): Likewise.
4143 (dump_ada_array_type): Likewise.
4144 (dump_template_types): Remove cpp_check parameter and do not pass it to
4145 dump_generic_ada_node.
4146 (dump_ada_template): Likewise.
4147 (dump_generic_ada_node): Remove cpp_check parameter and do not pass it
4148 recursively.
4149 (print_ada_methods): Change return type to integer. Remove cpp_check
4150 parameter and do not pass it down.
4151 (dump_nested_types): Remove cpp_check parameter and do not pass it to
4152 dump_generic_ada_node.
4153 (print_ada_declaration): Likewise. Test RECORD_OR_UNION_TYPE_P before
4154 accessing methods.
4155 (print_ada_struct_decl): Remove cpp_check parameter and do not pass it
4156 down. Use has_nontrivial_methods to recognize C++ classes. Use return
4157 value of print_ada_methods.
4158 (dump_ads): Rename cpp_check parameter to check and adjust prototype.
4159 Set cpp_check to it before invoking dump_ada_nodes.
4160 (dump_ada_specs): Likewise.
4161
b906f4ca
MP
41622013-11-03 Marek Polacek <polacek@redhat.com>
4163
4164 * c-ubsan.c: Don't include hash-table.h.
4165 (ubsan_instrument_vla): New function.
4166 * c-ubsan.h: Declare it.
4167
5e20cdc9
DM
41682013-10-31 David Malcolm <dmalcolm@redhat.com>
4169
4170 Automated part of renaming of symtab_node_base to symtab_node.
4171
4172 Patch autogenerated by rename_symtab.py from
4173 https://github.com/davidmalcolm/gcc-refactoring-scripts
4174 revision 58bb219cc090b2f4516a9297d868c245495ee622
4175
4176 * c-pragma.c (maybe_apply_pending_pragma_weaks): Rename
4177 symtab_node_base to symtab_node.
4178
7057e645
ESR
41792013-10-31 Edward Smith-Rowland <3dw4rd@verizon.net>
4180
4181 Implement C++14 digit separators.
4182 * c-lex.c (interpret_float): Remove digit separators from scratch string
4183 before building real literal.
4184
193ea7bc
JJ
41852013-10-30 Jakub Jelinek <jakub@redhat.com>
4186
4187 * cilk.c (create_cilk_helper_decl): Use HOST_WIDE_INT_PRINT_DEC.
4188
939b37da
BI
41892013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
4190
4191 * c-common.c (c_common_reswords[]): Added _Cilk_spawn and _Cilk_sync
4192 fields.
4193 (c_define_builtins): Called cilk_init_builtins if Cilk Plus is
4194 enabled.
4195 * c-common.h (enum rid): Added RID_CILK_SPAWN and RID_CILK_SYNC.
4196 (insert_cilk_frame): New prototype.
4197 (cilk_init_builtins): Likewise.
4198 (gimplify_cilk_spawn): Likewise.
4199 (c_cilk_install_body_w_frame_cleanup): Likewise.
4200 (cilk_detect_spawn_and_unwrap): Likewise.
4201 (cilk_set_spawn_marker): Likewise.
4202 (build_cilk_sync): Likewise.
4203 (build_cilk_spawn): Likewise.
4204 * cilk.c: New file.
4205
67348ccc
DM
42062013-10-29 David Malcolm <dmalcolm@redhat.com>
4207
4208 Patch autogenerated by refactor_symtab.py from
4209 https://github.com/davidmalcolm/gcc-refactoring-scripts
4210 revision 58bb219cc090b2f4516a9297d868c245495ee622
4211
4212 * c-gimplify.c (c_genericize): Update for conversion of symtab types
4213 to a true class hierarchy.
4214 * c-pragma.c (maybe_apply_pending_pragma_weaks): Likewise.
4215
d570872d
RS
42162013-10-27 Richard Sandiford <rdsandiford@googlemail.com>
4217
4218 * c-lex.c (interpret_integer): Remove call to cpp_num_sign_extend.
4219
98906124
JL
42202013-10-26 Jeff Law <law@redhat.com>
4221
adfac8df
JJ
4222 * c-common.c (c_define_builtins): Remove mudflap support.
4223 * c.opt: Ignore and warn for mudflap options.
98906124 4224
d73749df 42252013-10-24 Tobias Burnus <burnus@net-b.de>
8170608b
TB
4226
4227 PR other/33426
4228 * c-pragma.c (init_pragma) Add #pragma ivdep handling.
4229 * c-pragma.h (pragma_kind): Add PRAGMA_IVDEP.
4230
3f04b1bb
JM
42312013-10-23 Jason Merrill <jason@redhat.com>
4232
4233 * c-format.c (gcc_cxxdiag_char_table): Add %X.
4234
acf0174b
JJ
42352013-10-11 Jakub Jelinek <jakub@redhat.com>
4236
acd15a28
JJ
4237 * c-common.h (omp_clause_mask::operator !=): New method.
4238 * c-omp.c (c_omp_split_clauses): Use if ((mask & something) != 0)
4239 instead of if (mask & something) tests everywhere.
4240
acf0174b
JJ
4241 * c-cppbuiltin.c (c_cpp_builtins): Predefine _OPENMP to
4242 201307 instead of 201107.
4243 * c-common.c (DEF_FUNCTION_TYPE_8): Define.
4244 (c_common_attribute_table): Add "omp declare target" and
4245 "omp declare simd" attributes.
4246 (handle_omp_declare_target_attribute,
4247 handle_omp_declare_simd_attribute): New functions.
4248 * c-omp.c: Include c-pragma.h.
4249 (c_finish_omp_taskgroup): New function.
4250 (c_finish_omp_atomic): Add swapped argument, if true,
4251 build the operation first with rhs, lhs arguments and use NOP_EXPR
4252 build_modify_expr.
4253 (c_finish_omp_for): Add code argument, pass it down to make_code.
4254 (c_omp_split_clauses): New function.
4255 (c_split_parallel_clauses): Removed.
4256 (c_omp_declare_simd_clause_cmp, c_omp_declare_simd_clauses_to_numbers,
4257 c_omp_declare_simd_clauses_to_decls): New functions.
4258 * c-common.h (omp_clause_mask): New type.
4259 (OMP_CLAUSE_MASK_1): Define.
4260 (omp_clause_mask::omp_clause_mask, omp_clause_mask::operator &=,
4261 omp_clause_mask::operator |=, omp_clause_mask::operator ~,
4262 omp_clause_mask::operator |, omp_clause_mask::operator &,
4263 omp_clause_mask::operator <<, omp_clause_mask::operator >>,
4264 omp_clause_mask::operator ==): New methods.
4265 (enum c_omp_clause_split): New.
4266 (c_finish_omp_taskgroup): New prototype.
4267 (c_finish_omp_atomic): Add swapped argument.
4268 (c_finish_omp_for): Add code argument.
4269 (c_omp_split_clauses): New prototype.
4270 (c_split_parallel_clauses): Removed.
4271 (c_omp_declare_simd_clauses_to_numbers,
4272 c_omp_declare_simd_clauses_to_decls): New prototypes.
4273 * c-pragma.c (omp_pragmas): Add new OpenMP 4.0 constructs.
4274 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_CANCEL,
4275 PRAGMA_OMP_CANCELLATION_POINT, PRAGMA_OMP_DECLARE_REDUCTION,
4276 PRAGMA_OMP_DISTRIBUTE, PRAGMA_OMP_END_DECLARE_TARGET, PRAGMA_OMP_SIMD,
4277 PRAGMA_OMP_TARGET, PRAGMA_OMP_TASKGROUP and PRAGMA_OMP_TEAMS.
4278 Remove PRAGMA_OMP_PARALLEL_FOR and PRAGMA_OMP_PARALLEL_SECTIONS.
4279 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_ALIGNED,
4280 PRAGMA_OMP_CLAUSE_DEPEND, PRAGMA_OMP_CLAUSE_DEVICE,
4281 PRAGMA_OMP_CLAUSE_DIST_SCHEDULE, PRAGMA_OMP_CLAUSE_FOR,
4282 PRAGMA_OMP_CLAUSE_FROM, PRAGMA_OMP_CLAUSE_INBRANCH,
4283 PRAGMA_OMP_CLAUSE_LINEAR, PRAGMA_OMP_CLAUSE_MAP,
4284 PRAGMA_OMP_CLAUSE_NOTINBRANCH, PRAGMA_OMP_CLAUSE_NUM_TEAMS,
4285 PRAGMA_OMP_CLAUSE_PARALLEL, PRAGMA_OMP_CLAUSE_PROC_BIND,
4286 PRAGMA_OMP_CLAUSE_SAFELEN, PRAGMA_OMP_CLAUSE_SECTIONS,
4287 PRAGMA_OMP_CLAUSE_SIMDLEN, PRAGMA_OMP_CLAUSE_TASKGROUP,
4288 PRAGMA_OMP_CLAUSE_THREAD_LIMIT, PRAGMA_OMP_CLAUSE_TO and
4289 PRAGMA_OMP_CLAUSE_UNIFORM.
4290
826cacfe
MG
42912013-10-09 Marc Glisse <marc.glisse@inria.fr>
4292
4293 PR tree-optimization/20318
4294 * c-common.c (handle_returns_nonnull_attribute): New function.
4295 (c_common_attribute_table): Add returns_nonnull.
4296
2284b034
MG
42972013-10-03 Marc Glisse <marc.glisse@inria.fr>
4298
4299 PR c++/19476
4300 * c.opt (fcheck-new): Move to common.opt.
4301
b56e9788
MP
43022013-09-25 Marek Polacek <polacek@redhat.com>
4303 Jakub Jelinek <jakub@redhat.com>
4304
4305 PR sanitizer/58413
4306 * c-ubsan.c (ubsan_instrument_shift): Don't instrument
4307 an expression if we can prove it is correct.
4308 (ubsan_instrument_division): Likewise. Remove unnecessary
4309 check.
4310
ce6923c5
MP
43112013-09-18 Marek Polacek <polacek@redhat.com>
4312
4313 PR sanitizer/58411
4314 * c-common.c (handle_no_sanitize_undefined_attribute): New function.
4315 Declare it.
4316 (struct attribute_spec c_common_att): Add no_sanitize_undefined.
4317
fb5610fb
IS
43182013-09-14 Iain Sandoe <iain@codesourcery.com>
4319
4320 PR target/48094
4321 * c.opt (fgnu-runtime, fnext-runtime, fobjc-abi-version,
4322 fobjc-gc, freplace-objc-classes): Accept for LTO.
4323
88b0e79e
JC
43242013-09-13 Jacek Caban <jacek@codeweavers.com>
4325
4326 * c-target.def: New hook
4327
c9b0866a
PC
43282013-09-09 Paolo Carlini <paolo.carlini@oracle.com>
4329
4330 PR c++/43452
4331 * c.opt (Wdelete-incomplete): Add.
4332
0af94e6f
JR
43332013-09-08 Joern Rennecke <joern.rennecke@embecosm.com>
4334
4335 * c-common.c (same_scalar_type_ignoring_signedness): Delete.
4336 (vector_types_compatible_elements_p): New function.
4337 * c-common.h: (same_scalar_type_ignoring_signedness): Delete
4338 declaration.
4339 (vector_types_compatible_elements_p): Declare.
4340
7c26172c
GDR
43412013-09-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
4342
4343 * c-pretty-print.h (c_pretty_printer::simple_type_specifier): Now
4344 a virtual member function.
4345 (pp_simple_type_specifier): Remove.
4346 (pp_c_type_specifier): Likewise.
4347 * c-pretty-print.c (c_pretty_printer::simple_type_specifier):
4348 Rename from pp_c_type_specifier. Adjust.
4349 (c_pretty_printer::c_pretty_printer): Do not assign to
4350 simple_type_specifier.
4351
20059c8b
GDR
43522013-09-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
4353
4354 * c-pretty-print.h (c_pretty_printer::type_id): Now a virtual
4355 member function.
4356 (c_pretty_printer::storage_class_specifier): Likewise.
4357 (c_pretty_printer::initializer): Likewise.
4358 (pp_declaration): Remove.
4359 (pp_declaration_specifiers): Likewise.
4360 (pp_abstract_declarator): Likewise.
4361 (pp_declarator): Likewise.
4362 (pp_type_id): Likewise.
4363 (pp_statement): Likewise.
4364 (pp_constant): Likewise.
4365 (pp_id_expression): Likewise.
4366 (pp_primary_expression): Likewise.
4367 (pp_unary_expression): Likewise.
4368 (pp_multiplicative_expression): Likewise.
4369 (pp_conditional_expression): Likewise.
4370 (pp_assignment_expression): Likewise.
4371 (pp_expression): Likewise.
4372 (pp_c_type_id): Likewise.
4373 (pp_c_storage_class_specifier): Likewise.
4374 * c-pretty-print.c (pp_c_type_cast): Tidy.
4375 (pp_c_pointer): Likewise.
4376 (pp_c_type_specifier): Likewise.
4377 (pp_c_parameter_type_list): Likewise.
4378 (pp_c_function_definition): Likewise.
4379 (pp_c_init_declarator): Likewise.
4380 (pp_c_initializer_list): Likewise.
4381 (pp_c_constructor_elts): Likewise.
4382 (c_pretty_printer::direct_abstract_declarator): Likewise.
4383 (c_pretty_printer::declaration_specifiers): Likewise.
4384 (c_pretty_printer::primary_expression): Likewise.
4385 (c_pretty_printer::postfix_expression): Likewise.
4386 (c_pretty_printer::type_id): Rename from pp_c_type_id.
4387 (c_pretty_printer::storage_class_specifier): Rename from
4388 pp_c_storage_class_specifier.
4389 (c_pretty_printer::initializer): Rename from pp_c_initializer.
4390 (c_pretty_printer::c_pretty_printer): Do not assign to type_id,
4391 storage_class_specifier, initializer, offset_list, flags.
4392
de5a5fa1
MP
43932013-08-30 Marek Polacek <polacek@redhat.com>
4394
4395 * c-ubsan.c: New file.
4396 * c-ubsan.h: New file.
4397
8f0e4d72
GDR
43982013-08-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
4399
4400 * c-pretty-print.h (c_pretty_printer::declaration): Now a virtual
4401 member function.
4402 (c_pretty_printer::declaration_specifiers): Likewise.
4403 (c_pretty_printer::declarator): Likewise.
4404 (c_pretty_printer::abstract_declarator): Likewise.
4405 (c_pretty_printer::direct_abstract_declarator): Likewise.
4406 (c_pretty_printer::direct_declarator): Likewise.
4407 (c_pretty_printer::function_specifier): Likewise.
4408 (pp_declaration): Adjust.
4409 (pp_declaration_specifiers): Likewise.
4410 (pp_abstract_declarator): Likewise.
4411 (pp_direct_declarator): Likewise.
4412 (pp_function_specifier): Likewise.
4413 (pp_direct_abstract_declarator): Remove as unused.
4414 (pp_c_declaration): Remove.
4415 (pp_c_declaration_specifiers): Likewise.
4416 (pp_c_declarator): Likewise.
4417 (pp_c_direct_declarator): Likewise.
4418 (pp_c_function_specifier): Likewise.
4419 (pp_c_direct_abstract_declarator): Likewise.
4420 * c-pretty-print.c (c_pretty_printer::abstract_declarator): Rename
4421 from pp_c_abstract_declarator. Adjust.
4422 (c_pretty_printer::direct_abstract_declarator): Rename from
4423 pp_c_direct_abstract_declarator. Adjust.
4424 (c_pretty_printer::function_specifier): Rename from
4425 pp_c_function_specifier. Adjust.
4426 (c_pretty_printer::declaration_specifiers): Rename from
4427 pp_c_declaration_specifiers. Adjust.
4428 (c_pretty_printer::direct_declarator): Rename from
4429 pp_c_direct_declarator. Adjust.
4430 (c_pretty_printer::declarator): Rename from pp_c_declarator. Adjust.
4431 (c_pretty_printer::declaration): Rename from pp_c_declaration. Adjust.
4432 (c_pretty_printer::c_pretty_printer): Do not assign to
4433 declaration, declaration_specifiers, declarator,
4434 direct_declarator, direct_abstract_declarator, function_specifier.
4435
00d34d3a
GDR
44362013-08-26 Gabriel Dos Reis <gdre@integrable-solutions.net>
4437
4438 * c-pretty-print.h (c_pretty_printer::unary_expression): Now a
4439 virtual member function.
4440 (c_pretty_printer::multiplicative_expression): Likewise.
4441 (c_pretty_printer::conditional_expression): Likewise.
4442 (c_pretty_printer::assignment_expression): Likewise.
4443 (c_pretty_printer::expression): Likewise.
4444 (pp_unary_expression): Adjust.
4445 (pp_multiplicative_expression): Likewise.
4446 (pp_assignment_expression): Likewise.
4447 (pp_conditional_expression): Likewise.
4448 (pp_expression): Likewise.
4449 * c-pretty-print.c (c_pretty_printer::unary_expression): Rename
4450 from pp_c_unary_expression. Adjust.
4451 (c_pretty_printer::multiplicative_expression): Rename from
4452 pp_c_multiplicative_expression. Adjust.
4453 (c_pretty_printer::conditional_expression): Rename from
4454 pp_c_conditional_expression. Adjust.
4455 (c_pretty_printer::assignment_expression): Rename from
4456 pp_c_assignment_expression. Adjust.
4457 (c_pretty_printer::expression): Rename from pp_c_expression. Adjust.
4458 (c_pretty_printer::c_pretty_printer): Do not assign to
4459 unary_expression, multiplicative_expression,
4460 conditional_expression, expression.
4461
fb22178f
GDR
44622013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
4463
4464 * c-pretty-print.h (c_pretty_printer::postfix_expression): Now a
4465 virtual member function.
4466 (pp_postfix_expression): Adjust.
4467 (pp_c_postfix_expression): Remove.
4468 * c-pretty-print.c (c_pretty_printer::postfix_expression): Rename
4469 from pp_c_postfix_expression. Adjust.
4470 (c_pretty_printer::c_pretty_printer): Do not assign to
4471 postfix_expression.
4472
7ecc2600
GDR
44732013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
4474
4475 * c-pretty-print.h (c_pretty_printer::primary_expression): Now a
4476 virtua member function.
4477 (pp_primary_expression): Adjust.
4478 (pp_c_primary_expression): Remove.
4479 * c-pretty-print.c (c_pretty_printer::primary_expression): Rename
4480 from pp_c_primary_expression. Adjust.
4481 (pp_c_initializer_list): Use pp_primary_expression.
4482 (c_pretty_printer::c_pretty_printer): Do not assign to
4483 primary_expression.
4484
0691175f
GDR
44852013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
4486
4487 * c-pretty-print.h (c_pretty_printer::translate_string): Declare.
4488 * c-pretty-print.c (M_): Remove.
4489 (c_pretty_printer::translate_string): Define.
4490 (pp_c_type_specifier): Use it.
4491 (pp_c_primary_expression): Likewise.
4492 (pp_c_expression): Likewise.
4493
66dfe4c4
GDR
44942013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
4495
4496 * c-pretty-print.h (c_pretty_printer::id_expression): Now a
4497 virtual function.
4498 (pp_c_id_expression): Remove.
4499 (pp_id_expression): Adjust.
4500 * c-pretty-print.c (c_pretty_printer::id_expression): Rename from
4501 pp_c_id_expression. Adjust.
4502 (pp_c_postfix_expression): Use pp_id_expression.
4503 (c_pretty_printer::c_pretty_printer): Do not assign to id_expression.
4504
ca43e9d5
GDR
45052013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
4506
4507 * c-pretty-print.h (c_pretty_printer::constant): Now a virtual
4508 member function.
4509 (pp_constant): Adjust.
4510 (pp_c_constant): Remove.
4511 * c-pretty-print.c (c_pretty_printer::constant): Rename from
4512 pp_c_constant. Adjust.
4513 (pp_c_constant)
4514 (pp_c_primary_expression): Call pp_constant in lieu of pp_c_constant.
4515 (c_pretty_printer::c_pretty_printer): Remove assignment to constant.
4516
da6ca2b5
GDR
45172013-08-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
4518
4519 * c-pretty-print.h (pp_c_pretty_printer_init): Remove.
4520 (c_pretty_printer::c_pretty_printer): Declare.
4521 * c-pretty-print.c (pretty_printer::c_pretty_printer): Rename from
4522 c_pretty_printer_init. Adjust.
4523 (print_c_tree): Do not call c_pretty_printer_init.
4524 * c-ada-spec.c (dump_ads): Remove call to pp_construct.
4525
65a372f4
AC
45262013-08-09 Arnaud Charlet <charlet@adacore.com>
4527
4528 * c-ada-spec.c (print_ada_declaration): Prevent accessing null asm name
4529
fd9b0f32
PC
45302013-08-05 Paolo Carlini <paolo.carlini@oracle.com>
4531
4532 PR c++/58080
4533 * c-common.c (pointer_int_sum): Add bool parameter.
4534 * c-common.h (pointer_int_sum): Adjust declaration.
4535
e0aec1e9
GDR
45362013-08-05 Gabriel Dos Reis <gdr@integrable-solutions.net>
4537
4538 * c-pretty-print.c (print_c_tree): Simplify. Use non-static local
4539 c_pretty_printer variable.
4540
b066401f
GDR
45412013-08-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
4542
4543 * c-pretty-print.h (c_pretty_printer): Derive from pretty_printer.
4544 (pp_base): Remove.
4545 (pp_c_base): Likewise. Adjust users.
4546 * c-pretty-print.c (pp_c_maybe_whitespace): Adjust.
4547 (pp_c_whitespace): Do not call pp_base.
4548 (pp_c_left_paren): Likewise.
4549 (pp_c_right_paren): Likewise.
4550 (pp_c_left_brace): Likewise.
4551 (pp_c_right_brace): Likewise.
4552 (pp_c_left_bracket): Likewise.
4553 (pp_c_right_bracket): Likewise.
4554 (pp_c_dot): Likewise.
4555 (pp_c_ampersand): Likewise.
4556 (pp_c_star): Likewise.
4557 (pp_c_arrow): Likewise.
4558 (pp_c_semicolon): Likewise.
4559 (pp_c_complement): Likewise.
4560 (pp_c_exclamation): Likewise.
4561 (pp_c_direct_declarator): Likewise.
4562 (pp_c_ws_string): Likewise.
4563 (pp_c_identifier): Likewise.
4564 (pp_c_statement): Likewise.
4565 (print_c_tree): Likewise.
4566
65e5a578
ESR
45672013-08-04 Ed Smith-Rowland <3dw4rd@verizon.net>
4568
4569 PR c++/58072
4570 * c-common.c (c_parse_error): Catch user-defined literal tokens and
4571 provide useful error strings.
4572
137a1a27
GDR
45732013-08-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
4574
4575 * c-ada-spec.c (pp_ada_tree_identifier): Use specialized pretty
4576 printer functions instead of pp_string or operators and punctuators.
4577 (dump_generic_ada_node): Likewise.
4578 * c-pretty-print.c (pp_c_type_specifier): Likewise.
4579 (pp_c_relational_expression): Likewise.
4580 (pp_c_logical_or_expression): Likewise.
4581
07838b13
GDR
45822013-08-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
4583
4584 * c-ada-spec.c (print_ada_macros): Use specialized pretty printer
4585 functions instead of pp_character.
4586 (pp_ada_tree_identifier): Likewise.
4587 (dump_ada_double_name): Likewise.
4588 (dump_ada_function_declaration): Likewise.
4589 (dump_ada_array_domains): Likewise.
4590 (dump_template_types): Likewise.
4591 (dump_generic_ada_node): Likewise.
4592 (print_ada_declaration): Likewise.
4593 (print_ada_struct_decl): Likewise.
4594 * c-pretty-print.c (pp_c_integer_constant): Likewise.
4595
433cc7b0
TT
45962013-07-23 Tom Tromey <tromey@redhat.com>
4597
4598 * c-common.h (enum rid) <RID_GENERIC>: New constant.
4599 * c-common.c (c_common_reswords): Add _Generic.
4600
688010ba
OB
46012013-07-21 OndÅ\99ej Bílka <neleai@seznam.cz>
4602
4603 * c-common.c: Fix typos.
4604 * c-common.h: Likewise.
4605
2a99e5e6
LL
46062013-07-13 Lubos Lunak <l.lunak@suse.cz>
4607
4608 PR c++/55203
4609 * c-common.c (c_common_attribute_table): Add warn_unused.
4610 (handle_warn_unused_attribute): New.
4611
c26302d5
JJ
46122013-07-10 Jakub Jelinek <jakub@redhat.com>
4613
4614 * c-ppoutput.c (scan_translation_unit): Call account_for_newlines
4615 for all CPP_TOKEN_FLD_STR tokens, not just CPP_COMMENT.
4616
dfeadaa0
PC
46172013-07-10 Paolo Carlini <paolo.carlini@oracle.com>
4618
4619 PR c++/57869
4620 * c.opt: Add Wconditionally-supported.
4621
6a2fa4b2
GS
46222013-07-08 Graham Stott <graham.stott@btinternet.com>
4623
adfac8df 4624 * array-notation-common.c (length_mismatch_in_expr_p): Delete
6a2fa4b2
GS
4625 unused variables l_length and l_node.
4626
ecdbd01a 46272013-07-04 Joern Rennecke <joern.rennecke@embecosm.com>
40d3d530
JR
4628
4629 PR c/57821
4630 * c-common.c (complete_array_type): Delay folding first index
4631 like other indices. When folding, check for index overflow.
4632
bedc293e
MG
46332013-06-27 Marc Glisse <marc.glisse@inria.fr>
4634
4635 PR c++/57509
4636 * c-common.h (c_build_vec_perm_expr): New complain argument.
4637 * c-common.c (c_build_vec_perm_expr): Likewise.
4638 Use save_expr also in C++.
4639
604b2bfc
GDR
46402013-06-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
4641
4642 * c-common.c (c_common_nodes_and_builtins): Use cxx11 in lieu of cxx0x.
4643 * c-cppbuiltin.c (c_cpp_builtins): Likewise.
4644 * c-opts.c (c_common_post_options): Likewise.
4645
dfeadaa0 46462013-06-21 Balaji V. Iyer <balaji.v.iyer@intel.com>
713b46fa
BI
4647
4648 * array-notation-common.c (length_mismatch_in_expr): Changed the
4649 parameter type's from a dynamic array to a vec_tree. Also removed
4650 the size parameters.
4651 * c-common.h (length_mismatch_in_expr_p): Fixed prototype's as per
4652 the change above.
4653
2ce86d2e
BI
46542013-06-21 Balaji V. Iyer <balaji.v.iyer@intel.com>
4655
4656 * c-common.h (struct cilkplus_an_parts): New structure.
4657 (struct cilkplus_an_loop_parts): Likewise.
4658 (cilkplus_extract_an_triplets): New prototype.
4659 (fix_sec_implicit_args): Likewise.
4660 * array-notation-common.c (cilkplus_extract_an_triplets): New function.
4661 (fix_sec_implicit_args): Likewise.
604b2bfc 4662
07a6825b
BI
46632013-06-20 Balaji V. Iyer <balaji.v.iyer@intel.com>
4664
4665 * array-notation-common.c (find_inv_trees): Removed an unwanted
4666 typecasting.
4667 * c-common.h (struct inv_list::additional_tcodes): Changed type from
4668 enum rid to enum tree_code.
4669
08346abd
JH
46702013-06-11 Jan Hubicka <jh@suse.cz>
4671
4672 * c-common.c (handle_alias_ifunc_attribute): Do not set
4673 DECL_EXTERNAL for weakref variables.
4674 * c-pragma.c (handle_pragma_weak): Make sure aliases
4675 are not declared as external.
4676
d60f1706
BI
46772013-06-07 Balaji V. Iyer <balaji.v.iyer@intel.com>
4678
4679 * array-notation-common.c (length_mismatch_in_expr_p): Moved this
4680 function from c/c-array-notation.c.
4681 (is_cilkplus_reduce_builtin): Likewise.
4682 (find_rank): Likewise.
4683 (extract_array_notation_exprs): Likewise.
4684 (replace_array_notations): Likewise.
4685 (find_inv_trees): Likewise.
4686 (replace_inv_trees): Likewise.
4687 (contains_array_notation_expr): Likewise.
4688 (find_correct_array_notation_type): Likewise.
4689 * c-common.h (struct inv_list): Moved this struct from the file
4690 c/c-array-notation.c and added a new field called additional tcodes.
4691 (length_mismatch_in_expr_p): New prototype.
4692 (is_cilkplus_reduce_builtin): Likewise.
4693 (find_rank): Likewise.
4694 (extract_array_notation_exprs): Likewise.
4695 (replace_array_notation): Likewise.
4696 (find_inv_trees): Likewise.
4697 (replace_inv_trees): Likewise.
4698 (find_correct_array_notation_type): Likewise.
dfeadaa0 4699
36536d79
BI
47002013-05-28 Balaji V. Iyer <balaji.v.iyer@intel.com>
4701
4702 * c-common.c (c_define_builtins): When cilkplus is enabled, the
4703 function array_notation_init_builtins is called.
4704 (c_common_init_ts): Added ARRAY_NOTATION_REF as typed.
4705 * c-common.def (ARRAY_NOTATION_REF): New tree.
4706 * c-common.h (build_array_notation_expr): New function declaration.
4707 (build_array_notation_ref): Likewise.
4708 (extract_sec_implicit_index_arg): New extern declaration.
4709 (is_sec_implicit_index_fn): Likewise.
4710 (ARRAY_NOTATION_CHECK): New define.
4711 (ARRAY_NOTATION_ARRAY): Likewise.
4712 (ARRAY_NOTATION_START): Likewise.
4713 (ARRAY_NOTATION_LENGTH): Likewise.
4714 (ARRAY_NOTATION_STRIDE): Likewise.
4715 * c-pretty-print.c (pp_c_postifix_expression): Added a new case for
4716 ARRAY_NOTATION_REF.
4717 (pp_c_expression): Likewise.
4718 * c.opt (flag_enable_cilkplus): New flag.
4719 * array-notation-common.c: New file.
4720
f7716d57
JJ
47212013-05-14 Jakub Jelinek <jakub@redhat.com>
4722
4723 PR c++/57274
4724 * c-common.c (verify_tree): Don't recurse into SIZEOF_EXPR.
4725
a5e0cd1d
MG
47262013-05-10 Marc Glisse <marc.glisse@inria.fr>
4727
4728 * c-common.c (vector_types_convertible_p): No TYPE_PRECISION for
4729 vectors.
4730
f6bc1c4a
HS
47312013-05-07 Han Shen <shenhan@google.com>
4732
4733 * c-cppbuiltin.c (c_cpp_builtins): Added "__SSP_STRONG__=3".
4734
3f12f6e9
SKS
47352013-04-29 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
4736
4737 * c-common.c (check_user_alignment): Emit error for negative values.
4738
61949153
PC
47392013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
4740
4741 * c-opts.c (set_std_cxx11): Use CLK_CXX1Y and CLK_GNUCXX1Y.
4742
e93e18e9
PC
47432013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
4744
4745 * c-cppbuiltin.c (c_cpp_builtins): Do not define
4746 __GXX_EXPERIMENTAL_CXX1Y__.
4747
44d90fe1
PC
47482013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
4749 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4750
4751 * c.opt ([Wpointer-arith]): Enabled by -Wpedantic, as documented.
4752 * c-common.c (pointer_int_sum): Change -Wpointer-arith pedwarns
4753 to simply use OPT_Wpointer_arith.
4754 (c_sizeof_or_alignof_type): Likewise.
4755
13f39b2e
PC
47562013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
4757
4758 * c-cppbuiltin.c (c_cpp_builtins): Define __GXX_EXPERIMENTAL_CXX1Y__.
4759
4b84d650
JJ
47602013-04-12 Jakub Jelinek <jakub@redhat.com>
4761
4762 * c-format.c (gcc_diag_char_table, gcc_tdiag_char_table,
4763 gcc_cdiag_char_table, gcc_cxxdiag_char_table): Add %r and %R format
4764 specifiers.
4765
fb037b5d
SB
47662013-04-07 Steven Bosscher <steven@gcc.gnu.org>
4767
4768 * c-pragma.c (add_to_renaming_pragma_list): Fix leading comment.
4769
4e856798
PC
47702013-04-03 Paolo Carlini <paolo.carlini@oracle.com>
4771
4772 * c-common.c (pointer_int_sum): Remove dead code.
4773
4b1baac8
RS
47742013-03-09 Richard Sandiford <rdsandiford@googlemail.com>
4775
4776 PR middle-end/56524
4777 * c-common.c (handle_optimize_attribute): Don't call
4778 save_optabs_if_changed.
4779
0b50e654
JJ
47802013-03-05 Jakub Jelinek <jakub@redhat.com>
4781
4782 PR middle-end/56461
4783 * c-pch.c (pch_init): Free target_validity at the end.
4784
48c41403
JJ
47852013-03-04 Jakub Jelinek <jakub@redhat.com>
4786
4787 * c-pretty-print.c (pp_c_pretty_printer_init): Clear pp->flags.
4788
e664c61c
KS
47892013-02-28 Konstantin Serebryany <konstantin.s.serebryany@gmail.com>
4790 Jakub Jelinek <jakub@redhat.com>
4791
4792 PR sanitizer/56454
4793 * c-common.c (handle_no_sanitize_address_attribute): New function.
4794 (c_common_attribute_table): Add no_sanitize_address attribute.
4795 (handle_no_address_safety_analysis_attribute): Add
4796 no_sanitize_address attribute, not no_address_safety_analysis
4797 attribute.
4798
a475fd3d 47992013-02-18 Aldy Hernandez <aldyh@redhat.com>
135204dd
AH
4800
4801 PR target/52555
4802 * c-common.c (handle_optimize_attribute): Call
4803 save_optabs_if_changed.
4804
f6007d99
JJ
48052013-02-18 Jakub Jelinek <jakub@redhat.com>
4806 Steven Bosscher <steven@gcc.gnu.org>
4807
4808 PR pch/54117
4809 * c-opts.c (c_common_post_options): If debug info is enabled
4810 and non-dwarf*, refuse to load PCH files and when writing PCH
4811 file warn.
4812
cf35e2b1
JJ
48132013-02-05 Jakub Jelinek <jakub@redhat.com>
4814
4815 PR middle-end/56167
4816 * c-common.c (handle_error_attribute): Fix condition.
4817
32887460
JJ
48182013-01-30 Jakub Jelinek <jakub@redhat.com>
4819
4820 PR c++/55742
4821 * c-common.c (handle_target_attribute): Revert 2012-12-26 change.
4822
5af057d8
JM
48232013-01-18 Jason Merrill <jason@redhat.com>
4824
4825 PR target/54908
4826 * c.opt (-fextern-tls-init): New.
4827 * c-opts.c (c_common_post_options): Handle it.
4828
cc83c823
JJ
48292013-01-09 Jakub Jelinek <jakub@redhat.com>
4830
4831 PR c/48418
4832 * c-common.c (c_fully_fold_internal): Warn for LSHIFT_EXPR and
4833 RSHIFT_EXPR, if orig_op1 isn't INTEGER_CST, op1 is INTEGER_CST
4834 and is either negative or bigger or equal to type precision
4835 of the first operand.
4836
a859517f
MP
48372012-12-03 Marek Polacek <polacek@redhat.com>
4838
4839 PR c/55570
4840 * c-common.c (check_user_alignment): Swap order of tests,
4841 check TREE_CODE first.
4842
2d7aa578
ESR
48432012-11-29 Ed Smith-Rowland <3dw4rd@verizon.net>
4844
4845 PR c++/52654
4846 * c-common.h (overflow_type): New enum.
4847 (build_userdef_literal): Add overflow_type argument.
4848 (tree_userdef_literal): Add overflow_type.
4849 (USERDEF_LITERAL_OVERFLOW): New access macro.
4850 * c-common.c (build_userdef_literal): Add overflow_type
4851 argument.
4852 * c-lex.c (c_lex_with_flags): Add overflow_type to
4853 build_userdef_literal calls.
4854 (interpret_integer, interpret_float): Add overflow_type argument.
4855
cc3c4f62
RB
48562012-11-28 Richard Biener <rguenther@suse.de>
4857
4858 PR c/35634
4859 * c-gimplify.c (c_gimplify_expr): Gimplify self-modify expressions
4860 here and use a type with proper overflow behavior for types that would
4861 need to be promoted for the arithmetic.
4862
77bc5132
JJ
48632012-11-23 Jakub Jelinek <jakub@redhat.com>
4864
4865 PR sanitizer/55435
4866 * c-common.c (handle_no_address_safety_analysis_attribute): New
4867 function.
4868 (c_common_attribute_table): Add no_address_safety_analysis.
4869
5dc99c46
SB
48702012-11-16 Simon Baldwin <simonb@google.com>
4871
4872 * c.opt: Add f[no-]canonical-system-headers.
4873 * c-opts.c (c_common_handle_option): Handle
4874 OPT_fcanonical_system_headers.
4875
a4a0016d
ESR
48762012-11-09 Ed Smith-Rowland <3dw4rd@verizon.net>
4877
4878 PR c++/54413
4879 * c-opts.c (c_common_handle_option): Set new flags.
4880 * c.opt: Describe new flags.
4881
7dbb85a7
JM
48822012-11-09 Jason Merrill <jason@redhat.com>
4883
4884 * c.opt (Wabi-tag): New.
4885
ad7bac31
AK
48862012-11-09 Andi Kleen <ak@linux.intel.com>
4887
4888 PR 55139
4889 * c-common.c (get_atomic_generic_size): Mask with
4890 MEMMODEL_MASK
4891
7332899a
MLI
48922012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
4893
4894 PR c/53063
4895 * c.opt (Wformat): Make it Alias Wformat=1.
4896 (Wformat-contains-nul,Wformat-extra-args,Wformat-nonliteral,
4897 Wformat-security,Wformat-y2k,Wformat-zero-length): Use
4898 LangEnabledBy.
4899 (Wformat=): RejectNegative. Use LangEnabledBy.
4900 (Wnonnull): Use LangEnabledBy.
4901 * c-opts.c (c_common_handle_option): Do not handle Wformat here.
4902 * c-format.c (set_Wformat): Delete.
4903 (decode_format_attr): Replace OPT_Wformat with OPT_Wformat_.
4904 (maybe_read_dollar_number): Likewise.
4905 (avoid_dollar_number): Likewise.
4906 (finish_dollar_format_checking): Likewise.
4907 (check_format_info): Likewise.
4908 (check_format_info_main): Likewise.
4909 (check_format_types): Likewise.
4910 (format_type_warning): Likewise.
4911 * c-common.c (int): Likewise.
4912 (check_function_sentinel): Likewise.
4913 * c-common.h (warn_format,set_Wformat): Do not declare here.
4914
34a180a6
MLI
49152012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
4916
4917 PR c/53063
4918 * c.opt(Warray-bounds,Wdelete-non-virtual-dtor,Wenum-compare,
4919 Wmain,Woverlength-strings, Wunknown-pragmas,Wunused-macros):
4920 Use LangEnabledBy.
4921 (Wswitch,Wswitch-default,Wswitch-enum): Likewise. Move here from
4922 common.opt.
4923 (Wvariadic-macros): Init(1).
4924 * c-opts.c (c_common_handle_option): Do not handle them
4925 explicitly.
4926 (c_common_post_options): Likewise.
4927 (sanitize_cpp_opts): warn_unused_macros is now
4928 cpp_warn_unused_macros.
4929 (push_command_line_include): Likewise.
4930 * c-common.c (warn_unknown_pragmas): Do not define.
4931 * c-common.h (warn_unknown_pragmas): Do not declare.
4932
3f46d6a5
MLI
49332012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
4934
4935 PR c/51294
4936 * c-common.c (conversion_warning): Handle conditional expressions.
4937
880661a4
JW
49382012-10-29 Jonathan Wakely <jwakely.gcc@gmail.com>
4939
4940 PR c++/54930
4941 * c.opt (Wreturn_local_addr): Define new option.
4942
4514a96b
JM
49432012-10-25 Jason Merrill <jason@redhat.com>
4944
f14edc1a
JM
4945 * c.opt (Wvirtual-move-assign): New.
4946
4514a96b
JM
4947 * c.opt (Winherited-variadic-ctor): New.
4948
93100c6b
MG
49492012-10-25 Marc Glisse <marc.glisse@inria.fr>
4950
4951 PR c++/54427
4952 * c-common.c (scalar_to_vector): Handle VEC_COND_EXPR.
4953
1efcb8c6
JM
49542012-10-23 Joseph Myers <joseph@codesourcery.com>
4955
4956 * c-common.h (pch_cpp_save_state): Declare.
4957 * c-target.def (c_preinclude): New hook.
4958 * c-opts.c (done_preinclude): New.
4959 (push_command_line_include): Handle default preincluded header.
4960 (cb_file_change): Call pch_cpp_save_state when calling
4961 push_command_line_include.
4962 * c-pch.c (pch_ready_to_save_cpp_state, pch_cpp_state_saved)
4963 (pch_cpp_save_state): New.
4964 (pch_init): Call pch_cpp_save_state conditionally, instead of
4965 calling cpp_save_state.
4966
4a0ae68e
MLI
49672012-10-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
4968
4969 PR c/53063
4970 PR c/40989
4971 * c.opt (Waddress,Wchar-subscripts,Wsign-conversion,Wimplicit,
4972 Wimplicit-function-declaration,Wimplicit-int,Wsizeof-pointer-memaccess,
4973 Wnarrowing,Wparentheses,Wpointer-sign,Wreturn-type,Wsequence-point,
4974 Wsign-compare,Wuninitialized,Wmaybe-uninitialized,Wunused,
4975 Wvolatile-register-var): Add LangEnabledBy or EnabledBy.
4976 * c-opts.c (c_common_handle_option): Remove explicit handling from
4977 here.
4978 (c_common_post_options): Likewise.
4979
67e4210b
EB
49802012-10-18 Eric Botcazou <ebotcazou@adacore.com>
4981
4982 * c-ada-spec.c (LOCATION_COL): Delete.
4983 (compare_location): New function.
4984 (compare_node): Use it.
4985 (compare_comment): Likewise.
4986
65d4f2cd
MLI
49872012-10-16 Manuel López-Ibáñez <manu@gcc.gnu.org>
4988
4989 PR c/53063
4990 PR c/40989
4991 * c.opt (Wstrict-aliasing=,Wstrict-overflow=): Use LangEnabledBy.
4992 * c-opts.c (c_common_handle_option): Do not set them here. Add
4993 comment.
4994 (c_common_post_options): Likewise.
4995
909881cb
EB
49962012-10-16 Eric Botcazou <ebotcazou@adacore.com>
4997
4998 * c-ada-spec.c (ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX): Define.
4999 (dump_generic_ada_node) <INTEGER_CST>: Deal with sizetype specially.
5000 Remove POINTER_TYPE handling, add large unsigned handling and use
5001 ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX for big numbers.
5002
3a785c97
JJ
50032012-10-12 Jakub Jelinek <jakub@redhat.com>
5004
5005 PR c/54381
5006 * c-common.h (sizeof_pointer_memaccess_warning): Adjust prototype.
5007 * c-common.c (sizeof_pointer_memaccess_warning): Take array of 3
5008 locs and array of 3 trees instead of just single loc and single
5009 sizeof_arg tree. Handle __builtin___*_chk builtins too, and
5010 also stpncpy, bcopy, bcmp, bzero, snprintf and vsnprintf builtins.
5011 For *cmp* builtins that take two sources strings report warnings
5012 about first and second source, not about destination and source.
5013
5e54f81d
MG
50142012-10-12 Marc Glisse <marc.glisse@inria.fr>
5015
5016 PR c++/53055
5017 * c-common.h (enum ref_operator) [RO_ARROW_STAR]: New.
5018
f5b02f1e
EB
50192012-10-11 Eric Botcazou <ebotcazou@adacore.com>
5020
5021 * c-ada-spec.c (dump_ada_template): Bail out for template declarations
5022 declaring something coming from another file.
5023
b46dbc6c
AC
50242012-10-10 Arnaud Charlet <charlet@adacore.com>
5025
f5b02f1e 5026 PR ada/54845
b46dbc6c
AC
5027 * c-ada-spec.c (print_ada_struct_decl): Increase buf size.
5028
5d9de0d0
PC
50292012-10-09 Paolo Carlini <paolo.carlini@oracle.com>
5030
5031 PR c++/54194
5032 * c-common.c (warn_about_parentheses): Add location_t parameter;
5033 use EXPR_LOC_OR_LOC.
5034 * c-common.h: Update declaration.
5035
a212e43f
MG
50362012-10-09 Marc Glisse <marc.glisse@inria.fr>
5037
5038 PR c++/54427
5039 * c-common.c (scalar_to_vector): Moved from c-typeck.c. Support
5040 more operations. Make error messages optional.
5041 * c-common.h (enum stv_conv): Moved from c-typeck.c.
5042 (scalar_to_vector): Declare.
5043
b1db7f91
JM
50442012-10-08 Jason Merrill <jason@redhat.com>
5045
5046 * c-common.c (c_common_reswords): Add thread_local.
5047
e28d52cf
DS
50482012-10-08 Dodji Seketeli <dodji@redhat.com>
5049
5050 PR c++/53528 C++11 attribute support
5051 * c-common.h (bitfield_p, cxx_fundamental_alignment_p): Declare
5052 new functions.
5053 * c-common.c (check_cxx_fundamental_alignment_constraints): New
5054 static function.
5055 (handle_aligned_attribute): In choose strictest alignment
5056 among many. Use new check_cxx_fundamental_alignment_constraints.
5057 (handle_transparent_union_attribute): In c++11 attribute syntax,
5058 don't look through typedefs.
5059
3b78de56
AC
50602012-10-04 Arnaud Charlet <charlet@adacore.com>
5061
5062 * c-ada-spec.c (print_ada_declaration): Remove handling of TDF_RAW.
5063 * c.opt (-fdump-ada-spec, -fdump-ada-spec-slim): Move switch definition
5064 out of dumpfile.h.
5065
6040bb5f
DC
50662012-09-25 Dehao Chen <dehao@google.com>
5067
5068 PR middle-end/54645
3b78de56 5069 * c-pch.c (c_common_read_pch): Rebuild the location_adhoc_data
6040bb5f
DC
5070 map when read in the pch.
5071
3f8257db 50722012-09-18 Arnaud Charlet <charlet@adacore.com>
0b07a57e
AC
5073
5074 * c-ada-spec.c: Style fixes.
5075
3f8257db 50762012-09-18 Thomas Quinot <quinot@adacore.com>
da5182be
TQ
5077
5078 * c.opt (-fada-spec-parent): Define new command line switch.
5079 * c-ada-spec.c (get_ada_package): When -fada-spec-parent
5080 is specified, generate binding spec as a child of the specified unit.
5081
0ccb505d
PC
50822012-09-13 Paolo Carlini <paolo.carlini@oracle.com>
5083 Manuel López-Ibáñez <manu@gcc.gnu.org>
5084
5085 PR c++/53210
5086 * c.opt ([Winit-self]): Enabled by -Wall in C++.
5087
c583af79
AC
50882012-08-23 Arnaud Charlet <charlet@adacore.com>
5089
5090 * c-ada-spec.c (dump_generic_ada_node): Fix handling of name_only
5091 for pointers, and add missing Convention C pragma.
5092 (print_ada_struct_decl): Add missing aliased keyword.
5093 (dump_ads): Add pragma Ada_2005 and Style_Checks (Off).
5094
1a4049e7
JJ
50952012-08-17 Jakub Jelinek <jakub@redhat.com>
5096
5097 * c-common.c (sizeof_pointer_memaccess_warning): New function.
5098 * c.opt (-Wsizeof-pointer-memaccess): Add new option.
5099 * c-opts.c (c_common_handle_option): Enable it for -Wall.
5100 * c-common.h (sizeof_pointer_memaccess_warning): Add prototype.
5101 * c-common.def (SIZEOF_EXPR): Moved here from cp-tree.def.
5102
70b5e7dc
RG
51032012-08-10 Richard Guenther <rguenther@suse.de>
5104
5105 * c-pretty-print.c (pp_c_expression): Handle anonymous SSA names.
5106
f8923f7e
SB
51072012-08-07 Steven Bosscher <steven@gcc.gnu.org>
5108
5109 * c-pretty-print.c (pp_c_function_definition): Use pp_newline_and_flush
5110 instead of separate pp_newline and pp_flush.
5111 (print_c_tree): Likewise.
5112
e45abe1f
RH
51132012-07-26 Richard Henderson <rth@redhat.com>
5114
5115 * c-common.c (handle_hot_attribute): Allow labels.
5116 (handle_cold_attribute): Likewise.
5117
332f1d24
JJ
51182012-07-20 Jakub Jelinek <jakub@redhat.com>
5119
5120 PR c++/28656
5121 * c-common.c (check_function_nonnull): Handle multiple nonnull
5122 attributes properly.
5123
7ee2468b
SB
51242012-07-16 Steven Bosscher <steven@gcc.gnu.org>
5125
5126 * c-gimplify.c: Include dumpfile.h instead of tree-dump.h.
5127 * c-ada-spec.c: Likewise.
5128 * c-dump.c (dump_stmt): Move to cp/dump.c, the only user.
5129
ee7b28eb
SB
51302012-07-14 Steven Bosscher <steven@gcc.gnu.org>
5131
5132 * c-pch.c (CHECK_NO_ASM_OUT_DURING_PCH): Do not define.
5133 Remove code conditional on it.
5134
6bdf3519
SB
51352012-07-11 Steven Bosscher <steven@gcc.gnu.org>
5136
5137 * c-gimplify.c: Do not include basic-block.h.
5138 * c-common.c: Do not include linfuncs.h.
5139
532aafad
SB
51402012-07-08 Steven Bosscher <steven@gcc.gnu.org>
5141
5142 * c-common.h: Include tree.h.
5143
8d0d1915
JM
51442012-07-02 Jason Merrill <jason@redhat.com>
5145
5146 PR c++/53524
5147 * c-common.c (get_priority): Call default_conversion.
5148
fbc873ad
UB
51492012-07-01 Uros Bizjak <ubizjak@gmail.com>
5150
5151 * c-pch.c (c_common_write_pch): Remove unused variables.
5152
d4a10d0a
SB
51532012-06-29 Steven Bosscher <steven@gcc.gnu.org>
5154
5155 * cppspec.c: Moved from gcc/ to here.
5156
6f3a2e23
KT
51572012-06-27 Kai Tietz <ktietz@redhat.com>
5158
5159 PR preprocessor/37215
5160 * c-ppoutput.c (preprocess_file): Check for nonempty buffer.
5161
8ca92d04
SB
51622012-06-21 Steven Bosscher <steven@gcc.gnu.org>
5163
5164 * c-common.h (c_common_print_pch_checksum): Remove.
5165 * c-pch.c: Do not include output.h.
5166 (CHECK_NO_ASM_OUT_DURING_PCH): Define and add FIXME.
5167 (asm_out_file): Define iff CHECK_NO_ASM_OUT_DURING_PCH isdefined.
5168 (asm_file_startpos): Define iff CHECK_NO_ASM_OUT_DURING_PCH is defined.
5169 (struct c_pch_header): Remove.
5170 (get_ident): Update gpch version.
5171 (pch_init): Do not print executable_checksum to asm_out_file.
5172 Do not fail if there is no asm_out_file to read back from. Set
5173 asm_file_startpos only if CHECK_NO_ASM_OUT_DURING_PCH is defined.
5174 (c_common_write_pch): Verify that nothing was written to asm_out_file
5175 since pch_init was called. Do not write a c_pch_header, and do not
5176 copy from asm_out_file to the PCH.
5177 (c_common_read_pch): Do not read a c_pch_header, and do not restore
5178 the content of asm_out_file from the PCH.
5179 (c_common_print_pch_checksum): Remove.
5180 * c-opts.c (c_common_init): Print out executable_checksum directly.
5181
70f42967
SB
51822012-06-19 Steven Bosscher <steven@gcc.gnu.org>
5183
5184 * c-target.def (objc_declare_unresolved_class_reference,
5185 objc_declare_class_definition): Add new hooks.
5186
a8781821
SB
51872012-06-19 Steven Bosscher <steven@gcc.gnu.org>
5188
5189 * c-lex.c: Do not include output.h.
5190 (cb_ident): Try to put out .ident with targetm.asm_out.output_ident.
5191 Remove uses of ASM_OUTPUT_IDENT.
5192
9e1a8dd1
RR
51932012-06-15 Marc Glisse <marc.glisse@inria.fr>
5194
5195 PR c++/51033
5196 * c-common.h (c_build_vec_perm_expr): Move decl here.
5197 * c-common.c (c_build_vec_perm_expr): Move definition
5198 here.
5199
6f07a821
SB
52002012-06-06 Steven Bosscher <steven@gcc.gnu.org>
5201
5202 * c.opt (fconserve-space): Turn into a no-op.
5203
9faeb493 52042012-06-04 Sterling Augustine <saugustine@google.com>
c265f413
SA
5205
5206 * c-pretty-print.h (pp_c_flag_gnu_v3): New enumerator.
5207 * c-pretty-print.c (pp_c_specifier_qualifier_list): Check it at
5208 both the start and end of the function.
5209
a4b7d13c
SB
52102012-06-04 Steven Bosscher <steven@gcc.gnu.org>
5211
5212 * c-common.c: Do not include output.h.
5213 * c-pragma.c: Likewise.
5214
c265f413
SA
52152012-06-04 Steven Bosscher <steven@gcc.gnu.org>
5216
5217 * error.c (dump_decl): Check pp_c_flag_gnu_v3.
5218 (decl_as_dwarf_string, lang_decl_dwarf_name): New functions.
5219 (lang_decl_name): Handle namespace decls.
5220
be7a421e
SB
52212012-05-31 Steven Bosscher <steven@gcc.gnu.org>
5222
5223 * c-ada-spec.c: Do not include output.h.
5224 * c-semantics.c: Likewise.
5225
65de6659
JM
52262012-05-29 Joseph Myers <joseph@codesourcery.com>
5227
5228 * c-common.c: Fix typo.
5229
ca5f4331
MM
52302012-05-29 Michael Matz <matz@suse.de>
5231
5232 * c-common.h (c_expand_decl): Remove prototype.
5233
4f7f7aca
MLI
52342012-05-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
5235
5236 * c.opt (Wmissing-braces): Use LangEnabledBy(C ObjC,Wall).
5237 * c-opts.c (c_common_handle_option): Remove code handling
5238 warn_missing_braces.
5239
4a792f9b
PC
52402012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
5241
5242 PR c++/25137
5243 * c-opts.c (c_common_handle_option): For C++ -Wall doesn't enable
5244 -Wmissing_braces.
5245
650dc14a
DS
52462012-05-22 Dodji Seketeli <dodji@redhat.com>
5247
5248 PR c++/53322
5249 * c.opt (Wunused-local-typedefs): Use EnabledBy(Wunused).
5250
9b095bf1
MLI
52512012-05-17 Manuel López-Ibáñez <manu@gcc.gnu.org>
5252
5253 * c.opt (--pedantic-errors,-pedantic-errors): Do not handle here.
5254 * c-opts.c (c_common_handle_option): Do not handle explicitly
5255 Wreturn-type, Wwrite-strings, warn_ecpp, and -pedantic-errors.
5256
0b2c4be5
DS
52572012-05-16 Dodji Seketeli <dodji@redhat.com>
5258
5259 PR preprocessor/7263
5260 * c-lex.c (c_lex_with_flags): Pass a virtual location to the call
5261 to cpp_classify_number. For diagnostics, use the precise location
5262 instead of the global input_location.
5263
a1bde5af
PC
52642012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
5265
d02924ef 5266 PR c++/11856
a1bde5af
PC
5267 * c-common.c (shorten_compare): Check c_inhibit_evaluation_warnings.
5268
d1ede5f4
BS
52692012-05-14 Bernd Schmidt <bernds@codesourcery.com>
5270
a1bde5af 5271 * c-common.c (DEF_ATTR_STRING): Define and undefine as necessary.
d1ede5f4 5272
f2bc201f
MLI
52732012-05-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
5274
5275 PR 53063
5276 * c.opt (Wc++0X-compat,Wdelete-non-virtual-dtor,Wjump-misses-init,
5277 Wreorder): Use LangEnabledBy.
5278 * c-opts.c (c_common_handle_option): Do not enable them
5279 explicitly. Call lang-specific generated functions.
5280 (c_common_post_options): Do not set them here.
5281
95744782
MLI
52822012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
5283
5284 * c.opt (Wclobbered,Wempty-body,Wignored-qualifiers,
5285 Wmissing-field-initializers,Wmissing-parameter-type,
5286 Wold-style-declaration,Woverride-init): Use EnabledBy.
5287 * c-opts.c (c_common_post_options): Do not set here explicitly.
5288
7d5a5747
MLI
52892012-05-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
5290
5291 PR 53063
5292 * c-opts.c (c_common_handle_option): Use handle_generated_option
5293 to enable sub-options.
5294
5a3c9cf2
PC
52952012-05-10 Paolo Carlini <paolo.carlini@oracle.com>
5296
5297 PR c++/53158
5298 * c-common.c (warnings_for_convert_and_check): Use warning_at.
5299
3ac8781c
RG
53002012-05-10 Richard Guenther <rguenther@suse.de>
5301
5302 * c-common.c (c_sizeof_or_alignof_type): Remove assert and
5303 adjust commentary about TYPE_IS_SIZETYPE types.
5304
1e537948
MLI
53052012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
5306
5307 PR c++/53261
5308 * c-common.c (warn_logical_operator): Check that argument of
5309 integer_zerop is not NULL.
5310
f2c4a785
MLI
53112012-05-05 Manuel López-Ibáñez <manu@gcc.gnu.org>
5312
5313 PR c/43772
5314 * c-common.c (warn_logical_operator): Do not warn if either side
5315 is already true or false.
5316
50f305ca
MLI
53172012-05-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
5318
5319 PR c/51712
5320 * c-common.c (expr_original_type): New.
5321 (shorten_compare): Do not warn for enumeration types.
5322
0c3641b0
MLI
53232012-05-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
5324
5325 * c.opt (fpermissive): Add Var(flag_permissive).
5326
7edaa4d2
MG
53272012-04-30 Marc Glisse <marc.glisse@inria.fr>
5328
5329 PR c++/51033
5330 * c-common.c (convert_vector_to_pointer_for_subscript): New function.
5331 * c-common.h (convert_vector_to_pointer_for_subscript): Declare it.
5332
b9c8da34
DS
53332012-04-30 Dodji Seketeli <dodji@redhat.com>
5334
5335 Add -Wvarargs option
5336 * c.opt (Wvarargs): Define new option.
5337
e6c69da0
MLI
53382012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
5339
5340 * c-common.c (check_function_arguments): Replace
5341 Wmissing-format-attribute with Wsuggest-attribute=format.
5342
90137d8f
MLI
53432012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
5344
5345 * c.opt (Wsuggest-attribute=format): New. Alias of
5346 Wmissing-format-attribute.
5347 * c-format.c (decode_format_type): Replace
5348 Wmissing-format-attribute with Wsuggest-attribute=format.
5349 (check_function_format): Likewise.
5350
9faeb493 53512012-04-27 Ollie Wild <aaw@google.com>
7f5f5f98
OW
5352
5353 * c-common.c: Add CPP_W_LITERAL_SUFFIX mapping.
5354 * c-opts.c (c_common_handle_option): Handle OPT_Wliteral_suffix.
5355 * c.opt: Add Wliteral-suffix.
5356
c1771a20
MLI
53572012-04-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
5358
5359 PR c/44774
5360 * c.opt (Wpedantic): New.
5361 (pedantic): Alias Wpedantic.
5362 * c-opts.c (c_common_handle_option): Replace -pedantic with -Wpedantic.
5363 (c_common_post_options): Likewise.
5364 (sanitize_cpp_opts): Likewise.
5365 * c-lex.c (interpret_float): Likewise.
5366 * c-format.c (check_format_types): Likewise.
5367 * c-common.c (pointer_int_sum): Likewise.
5368 (c_sizeof_or_alignof_type): Likewise.
5369 (c_add_case_label): Likewise.
5370 (c_do_switch_warnings): Likewise.
5371 * c-pragma.c (handle_pragma_float_const_decimal64): Likewise.
5372
04b391c1
JM
53732012-04-15 Jason Merrill <jason@redhat.com>
5374
5375 PR c++/52818
5376 * c-format.c (CPLUSPLUS_STD_VER): C++11 inherits from C99.
5377 (C_STD_NAME): Distinguish between C++98 and C++11.
5378
ac868f29
EB
53792012-04-11 Eric Botcazou <ebotcazou@adacore.com>
5380
5381 PR target/52624
5382 * c-common.h (uint16_type_node): Rename into...
5383 (c_uint16_type_node): ...this.
5384 * c-common.c (c_common_nodes_and_builtins): Adjust for above renaming.
5385 * c-cppbuiltin.c (builtin_define_stdint_macros): Likewise.
5386
fd4116f4
MLI
53872012-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org>
5388
5389 * c-common.c (warn_if_unused_value): Move definition to here.
5390 * c-common.h (warn_if_unused_value): Move declaration to here.
5391
573ac65e
WB
53922012-03-23 William Bader <williambader@hotmail.com>
5393
5394 * c-lex.c (c_lex_with_flags): Avoid declarations after stmts.
5395
552b8185
JM
53962012-03-20 Jason Merrill <jason@redhat.com>
5397
5398 * c-common.h (enum cxx_dialect): Add cxx1y.
5399 * c-common.c (c_common_nodes_and_builtins): Use >= for cxx_dialect
5400 test.
5401 * c-cppbuiltin.c (c_cpp_builtins): Likewise.
5402 * c-opts.c (c_common_post_options): Likewise.
5403 (set_std_cxx1y): New.
5404 (c_common_handle_option): Call it.
5405 * c.opt (-std=c++1y, -std=gnu++1y): New flags.
5406
04398fa8
PC
54072012-03-19 Paolo Carlini <paolo.carlini@oracle.com>
5408
5409 PR c++/14710
5410 * c.opt ([Wuseless-cast]): Add.
5411
d2a12ae7
RG
54122012-03-16 Richard Guenther <rguenther@suse.de>
5413
5414 * c-pretty-print.c (pp_c_initializer_list): Adjust.
5415
a12bf402
MLI
54162012-03-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
5417
5418 PR c++/44783
5419 * c.opt (ftemplate-backtrace-limit) Add.
5420
5c30094f
RO
54212012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5422
5423 * c-cppbuiltin.c (c_cpp_builtins): Remove #pragma extern_prefix
5424 handling.
5425 * c-pragma.c (handle_pragma_extern_prefix): Remove.
5426 (init_pragma): Don't register extern_prefix.
5427
21fa2faf
RG
54282012-03-12 Richard Guenther <rguenther@suse.de>
5429
5430 * c-common.c (c_common_get_narrower): Use c_common_type_for_size.
5431 (builtin_type_for_size): Likewise.
5432
e3793c6f
JJ
54332012-02-13 Jakub Jelinek <jakub@redhat.com>
5434
5435 PR c++/52215
5436 * c-common.c (sync_resolve_params): Don't decide whether to convert
5437 or not based on TYPE_SIZE comparison, convert whenever arg_type
5438 is unsigned INTEGER_TYPE.
5439
93286335
PC
54402012-02-06 Paolo Carlini <paolo.carlini@oracle.com>
5441
5442 PR c/52118
5443 * c.opt ([Wunused-local-typedefs]): Fix description.
5444
7a421706
MS
54452012-01-24 Mike Stump <mikestump@comcast.net>
5446
5447 * c-common.c (c_common_type_for_mode): Match signed/unsigned types
5448 exactly.
5449
ba9b1f11
RG
54502012-01-18 Richard Guenther <rguenther@suse.de>
5451
5452 * c-opts.c (c_common_post_options): Reset LTO flags if
5453 we are about to generate a PCH.
5454
465406be
PC
54552012-01-17 Paolo Carlini <paolo.carlini@oracle.com>
5456
5457 PR c++/51777
5458 * c-pretty-print.c (pp_c_integer_constant): For unsigned constants
5459 use pp_unsigned_wide_integer.
5460
aee15221
RG
54612012-01-10 Richard Guenther <rguenther@suse.de>
5462
5463 PR middle-end/51806
5464 * c-opts.c (c_common_handle_option): Move -Werror handling
5465 to language independent code.
5466
5720c0dc
RG
54672012-01-05 Richard Guenther <rguenther@suse.de>
5468
5469 PR middle-end/51764
5470 * c.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move here
5471 from common.opt.
5472
73ac190a
PC
54732011-12-30 Paolo Carlini <paolo.carlini@oracle.com>
5474
5475 PR c++/51316
5476 * c-common.c (c_sizeof_or_alignof_type): In C++ allow for alignof
5477 of array types with an unknown bound.
5478
48b0b196
JM
54792011-12-20 Joseph Myers <joseph@codesourcery.com>
5480
5481 * c-common.c (flag_isoc99): Update comment to refer to C11.
5482 (flag_isoc1x): Change to flag_isoc11.
5483 * c-common.h (flag_isoc99): Update comment to refer to C11.
5484 (flag_isoc1x): Change to flag_isoc11.
5485 * c-cppbuiltin.c (cpp_atomic_builtins): Change comment to refer to
5486 C11.
5487 * c-opts.c (set_std_c1x): Change to set_std_c11.
5488 (c_common_handle_option): Handle OPT_std_c11 and OPT_std_gnu11.
5489 Call set_std_c11.
5490 (set_std_c89, set_std_c99, set_std_c11): Use flag_isoc11.
5491 (set_std_c1): Use CLK_STDC11 and CLK_GNUC11.
5492 * c.opt (std=c1x): Change to std=c11. Document as non-draft
5493 standard.
5494 (std=c1x, std=iso9899:2011): Add as aliases of std=c11.
5495 (std=gnu1x): Change to std=gnu11. Refer to non-draft standard.
5496 (std=gnu1x): Make alias of std=gnu11.
5497
d58d6eb5
JM
54982011-12-19 Jason Merrill <jason@redhat.com>
5499
5500 PR c++/51228
5501 * c-common.c (handle_transparent_union_attribute): Check the first
5502 field if the type is complete.
5503
b3908fcc
JW
55042011-12-15 Jonathan Wakely <jwakely.gcc@gmail.com>
5505
5506 PR libstdc++/51365
5507 * c-common.c (RID_IS_FINAL): Add.
5508 * c-common.h (RID_IS_FINAL): Add.
5509
fea3ca91
IS
55102011-11-30 Iain Sandoe <iains@gcc.gnu.org>
5511
5512 * c.opt (fgnu-runtime): Provide full description.
5513 (fnext-runtime): Likewise.
5514 * c-opts.c (OPT_fgnu_runtime, OPT_fnext_runtime) Remove.
5515
62bad7cd
AM
55162011-11-28 Andrew MacLeod <amacleod@redhat.com>
5517
5518 * c-cpp-builtin.c (cpp_atomic_builtins):New. Emit all atomic
5519 predefines in one place. Add LOCK_FREE predefines.
5520 (c_cpp_builtins): Move Legacy HAVE_SYNC predefines to
5521 new func.
5522
c466c4ff
AM
55232011-11-24 Andrew MacLeod <amacleod@redhat.com>
5524
5525 PR c/51256
9faeb493 5526 * c-common.c (get_atomic_generic_size): Check for various error
c466c4ff 5527 conditions
9faeb493
UB
5528 (resolve_overloaded_atomic_exchange,
5529 resolve_overloaded_atomic_compare_exchange,
c466c4ff
AM
5530 resolve_overloaded_atomic_load, resolve_overloaded_atomic_store): Return
5531 error_mark_node for error conditions.
9faeb493 5532
a5952633
RG
55332011-11-08 Richard Guenther <rguenther@suse.de>
5534
5535 PR middle-end/51010
5536 c-family/
5537
0a35513e
AH
55382011-11-07 Richard Henderson <rth@redhat.com>
5539 Aldy Hernandez <aldyh@redhat.com>
5540 Torvald Riegel <triegel@redhat.com>
5541
5542 Merged from transactional-memory.
5543
5544 * c-common.c (handle_tm_wrap_attribute,
5545 handle_tm_attribute, ignore_attribute, parse_tm_stmt_attr): New.
5546 (struct c_common_reswords): Added __transaction* keywords.
5547 (struct c_common_attribute_table): Added transaction* and tm_regparm
5548 attributes.
5549 * c-common.h: Added RID_TRANSACTION*. Added TM_ATTR* and TM_STMT*
5550 masks.
5551 (parse_tm_stmt_attr, tm_attr_to_mask, tm_mask_to_attr,
5552 find_tm_attribute): Declare.
5553
6d87092d
JM
55542011-11-07 Jason Merrill <jason@redhat.com>
5555
5556 PR c++/35688
5557 * c-common.c, c-common.h: Revert yesterday's changes.
5558
8e7860a1
JM
55592011-11-06 Jason Merrill <jason@redhat.com>
5560
5561 PR c++/35688
5562 * c-common.c (decl_has_visibility_attr): Split out from...
5563 (c_determine_visibility): ...here.
5564 * c-common.h: Declare it.
5565
d19fa6b5
JM
55662011-11-06 Joseph Myers <joseph@codesourcery.com>
5567
5568 * c-common.c (c_common_reswords): Add _Alignas and _Alignof.
5569 (c_sizeof_or_alignof_type): Diagnose alignof applied to a function
5570 type.
5571 (check_user_alignment): New. Split out of
5572 handle_aligned_attribute. Disallow integer constants with
5573 noninteger types. Conditionally allow zero.
5574 (handle_aligned_attribute): Use check_user_alignment.
5575 * c-common.h (RID_ALIGNAS, check_user_alignment): New.
5576
86951993
AM
55772011-11-06 Andrew MacLeod <amacleod@redhat.com>
5578 Richard Henderson <rth@redhat.com>
5579
5580 Merged from cxx-mem-model.
5581
5582 * c-cppbuiltin.c (c_cpp_builtins): Test both atomic and sync patterns.
9faeb493 5583 * c-common.c (sync_resolve_params, sync_resolve_return): Only tweak
86951993
AM
5584 parameters that are the same type size.
5585 (get_atomic_generic_size): New. Find size of generic
5586 atomic function parameters and do typechecking.
5587 (add_atomic_size_parameter): New. Insert size into parameter list.
5588 (resolve_overloaded_atomic_exchange): Restructure __atomic_exchange to
5589 either __atomic_exchange_n or external library call.
9faeb493 5590 (resolve_overloaded_atomic_compare_exchange): Restructure
86951993 5591 __atomic_compare_exchange to either _n variant or external library call.
9faeb493 5592 (resolve_overloaded_atomic_load): Restructure __atomic_load to either
86951993
AM
5593 __atomic_load_n or an external library call.
5594 (resolve_overloaded_atomic_store): Restructure __atomic_store to either
5595 __atomic_store_n or an external library call.
5596 (resolve_overloaded_builtin): Handle new __atomic builtins.
5597
cf9e9959
EB
55982011-11-04 Eric Botcazou <ebotcazou@adacore.com>
5599
5600 PR c++/50608
5601 * c-common.c (c_fully_fold_internal) <ADDR_EXPR>: Call fold_offsetof_1.
5602 (fold_offsetof_1): Make global. Remove STOP_REF argument and adjust.
5603 <INDIRECT_REF>: Return the argument.
5604 <ARRAY_REF>: Remove special code for negative offset.
5605 Call fold_build_pointer_plus instead of size_binop.
5606 (fold_offsetof): Remove STOP_REF argument and adjust.
5607 * c-common.h (fold_offsetof_1): Declare.
5608 (fold_offsetof): Remove STOP_REF argument.
5609
25339f10
JM
56102011-11-02 Paolo Carlini <paolo.carlini@oracle.com>
5611
5612 PR c++/50810
5613 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
5614 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
5615 Wnarrowing for C++0x and C++98.
5616 * c.opt ([Wnarrowing]): Update.
5617
89401152
PC
56182011-11-01 Paolo Carlini <paolo.carlini@oracle.com>
5619
5620 PR c++/44277
5621 * c.opt: Add Wzero-as-null-pointer-constant.
5622
97e3ad20
JM
56232011-10-31 Jason Merrill <jason@redhat.com>
5624
15694fdd
JM
5625 * c.opt (-fdeduce-init-list): Off by default.
5626
97e3ad20
JM
5627 PR c++/50920
5628 * c-common.h (cxx_dialect): Add cxx11 and cxx03.
5629 * c.opt: Add -std=c++11, -std=gnu++11, -std=gnu++03,
5630 and -Wc++11-compat.
5631 * c-opts.c (set_std_cxx11): Rename from set_std_cxx0x.
5632
fb9120e3
RAV
56332011-10-27 Roberto Agostino Vitillo <ravitillo@lbl.gov>
5634
5635 PR c++/30066
5636 * c.opt (fvisibility-inlines-hidden): Description change.
5637
3ce4f9e4
ESR
56382011-10-26 Ed Smith-Rowland <3dw4rd@verizon.net>
5639
5640 Implement C++11 user-defined literals.
5641 * c-common.c (build_userdef_literal): New.
5642 * c-common.def: New tree code.
5643 * c-common.h (tree_userdef_literal): New tree struct and accessors.
5644 * c-lex.c (interpret_float): Add suffix parm.
5645 (c_lex_with_flags): Build literal tokens.
5646
5f53c243
PC
56472011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
5648
5649 PR c++/50841
5650 Revert:
5651 2011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
5652
5653 PR c++/50810
5654 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
5655 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
5656 Wnarrowing for C++0x and C++98.
5657 * c.opt ([Wnarrowing]): Update.
5658
263734e1
PC
56592011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
5660
5661 PR c++/50810
5662 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
5663 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
5664 Wnarrowing for C++0x and C++98.
5665 * c.opt ([Wnarrowing]): Update.
5666
d2e312d7
PC
56672011-10-21 Paolo Carlini <paolo.carlini@oracle.com>
5668
5669 PR c++/45385
5670 * c-common.c (conversion_warning): Remove code looking for
5671 artificial operands.
5672
d17687f6
DS
56732011-10-18 Dodji Seketeli <dodji@redhat.com>
5674
5675 PR bootstrap/50760
5676 * c-lex.c (fe_file_change): Use LINEMAP_SYSP when
9faeb493 5677 !NO_IMPLICIT_EXTERN_C.
d17687f6 5678
fc8396e9
PC
56792011-10-17 Michael Spertus <mike_spertus@symantec.com>
5680
5681 * c-common.c (c_common_reswords): Add __bases,
5682 __direct_bases.
5683 * c-common.h: Add RID_BASES and RID_DIRECT_BASES.
5684
56852011-10-17 Paolo Carlini <paolo.carlini@oracle.com>
5686
5687 PR c++/50757
5688 * c.opt ([Wnonnull]): Add C++ and Objective-C++.
5689
847e697a
TT
56902011-10-15 Tom Tromey <tromey@redhat.com>
5691 Dodji Seketeli <dodji@redhat.com>
5692
5693 * c.opt (fdebug-cpp): New option.
5694 * c-opts.c (c_common_handle_option): Handle the option.
5695 * c-ppoutput.c (maybe_print_line_1): New static function. Takes an
5696 output stream in parameter. Factorized from ...
5697 (maybe_print_line): ... this. Dump location debug information when
5698 -fdebug-cpp is in effect.
5699 (print_line_1): New static function. Takes an output stream in
5700 parameter. Factorized from ...
5701 (print_line): ... here. Dump location information when -fdebug-cpp
5702 is in effect.
5703 (scan_translation_unit): Dump location information when
5704 -fdebug-cpp is in effect.
5705
92582b75
TT
57062011-10-15 Tom Tromey <tromey@redhat.com>
5707 Dodji Seketeli <dodji@redhat.com>
5708
5709 * c.opt (ftrack-macro-expansion): New option. Handle it with and
5710 without argument.
5711 * c-opts.c (c_common_handle_option)<case
5712 OPT_ftrack_macro_expansion_, case OPT_ftrack_macro_expansion>: New
5713 cases. Handle -ftrack-macro-expansion with and without argument.
5714
46427374
TT
57152011-10-15 Tom Tromey <tromey@redhat.com>
5716 Dodji Seketeli <dodji@redhat.com>
5717
5718 * c-ppoutput.c (scan_translation_unit, maybe_print_line)
5719 (print_line, cb_define, do_line_change): Adjust to avoid touching
5720 the internals of struct line_map. Use the public API instead.
5721 * c-pch.c (c_common_read_pch): Likewise.
5722 * c-lex.c (fe_file_change): Likewise.
5723
fc8396e9
PC
57242011-10-14 Paolo Carlini <paolo.carlini@oracle.com>
5725
5726 PR c++/17212
5727 * c.opt ([Wformat-zero-length]): Add C++ and Objective-C++.
5728
57292011-10-11 Paolo Carlini <paolo.carlini@oracle.com>
5730
5731 PR c++/33067
5732 * c-pretty-print.c (pp_c_floating_constant): Output
5733 max_digits10 (in the ISO C++ WG N1822 sense) decimal digits.
5734
e79983f4
MM
57352011-10-11 Michael Meissner <meissner@linux.vnet.ibm.com>
5736
5737 * c-common.c (def_builtin_1): Delete old interface with two
5738 parallel arrays to hold standard builtin declarations, and replace
5739 it with a function based interface that can support creating
5740 builtins on the fly in the future. Change all uses, and poison
5741 the old names. Make sure 0 is not a legitimate builtin index.
5742 * c-omp.c (c_finish_omp_barrier): Ditto.
5743 (c_finish_omp_taskwait): Ditto.
5744 (c_finish_omp_flush): Ditto.
5745
6637388f
TG
57462011-10-11 Tristan Gingold <gingold@adacore.com>
5747
5748 * c.opt: (fallow-parameterless-variadic-functions): New.
5749
3797cb21
DS
57502011-09-08 Dodji Seketeli <dodji@redhat.com>
5751
5752 PR c++/33255 - Support -Wunused-local-typedefs warning
5753 * c-common.h (struct c_language_function::local_typedefs): New
5754 field.
9faeb493
UB
5755 (record_locally_defined_typedef, maybe_record_typedef_use)
5756 (maybe_warn_unused_local_typedefs): Declare new functions.
3797cb21 5757 * c-common.c (record_locally_defined_typedef)
9faeb493
UB
5758 (maybe_record_typedef_use)
5759 (maybe_warn_unused_local_typedefs): Define new functions.
3797cb21
DS
5760 * c.opt: Declare new -Wunused-local-typedefs flag.
5761
693ddb1b
EB
57622011-09-06 Eric Botcazou <ebotcazou@adacore.com>
5763
5764 PR middle-end/50266
5765 * c-common.c (c_fully_fold_internal) <ADDR_EXPR>: Fold offsetof-like
5766 computations.
5767
830c740f
RG
57682011-09-05 Richard Guenther <rguenther@suse.de>
5769
5770 * c-common.c (complete_array_type): Use ssize_int (-1) instead
5771 of integer_minus_one_node for empty array upper bounds.
5772
892a371f
DS
57732011-08-28 Dodji Seketeli <dodji@redhat.com>
5774
5775 * c-pch.c (c_common_read_pch): Call linemap_add with LC_ENTER as
5776 it's the first time it's being called on this main TU.
5777
0e3fdb48
RB
57782011-08-24 Richard Guenther <rguenther@suse.de>
5779
5780 PR c/49396
5781 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Fix conditional.
5782
57832011-08-22 Gabriel Charette <gchare@google.com>
e3dfef44
GC
5784
5785 * c-opts.c (c_finish_options): Force BUILTINS_LOCATION for tokens
5786 defined in cpp_init_builtins and c_cpp_builtins.
5787
d4a83c10
JM
57882011-08-19 Joseph Myers <joseph@codesourcery.com>
5789
5790 * c-common.c (c_common_reswords): Add __builtin_complex.
5791 * c-common.h (RID_BUILTIN_COMPLEX): New.
5792
bbceee64
JM
57932011-08-18 Joseph Myers <joseph@codesourcery.com>
5794
5795 * c-common.c (c_common_reswords): Add _Noreturn.
5796 (keyword_is_function_specifier): Handle RID_NORETURN.
5797 * c-common.h (RID_NORETURN): New.
5798
3f8257db 57992011-08-10 Artjoms Sinkarovs <artyom.shinakroff@gmail.com>
0e3a99ae
AS
5800
5801 * c-common.c (unsafe_conversion_p): New function. Check if it is
5802 unsafe to convert an expression to the type.
5803 (conversion_warning): Adjust, use unsafe_conversion_p.
5804 * c-common.h (unsafe_conversion_p): New function declaration.
5805
20906c66
JJ
58062011-08-02 Jakub Jelinek <jakub@redhat.com>
5807
5808 * c-common.h (c_finish_omp_atomic): Adjust prototype.
5809 (c_finish_omp_taskyield): New prototype.
5810 * c-omp.c (c_finish_omp_atomic): Add OPCODE, V, LHS1 and RHS1
5811 arguments. Handle OMP_ATOMIC_READ, OMP_ATOMIC_CAPTURE_OLD and
5812 OMP_ATOMIC_CAPTURE_NEW in addition to OMP_ATOMIC. If LHS1
5813 or RHS1 have side-effects, evaluate those too in the right spot,
5814 if it is a decl and LHS is also a decl, error out if they
5815 aren't the same.
5816 (c_finish_omp_taskyield): New function.
5817 * c-cppbuiltin.c (c_cpp_builtins): Change _OPENMP to 201107.
5818 * c-pragma.c (omp_pragmas): Add taskyield.
5819 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_TASKYIELD.
5820 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_FINAL and
5821 PRAGMA_OMP_CLAUSE_MERGEABLE.
5822
770e5a2e
DS
58232011-07-25 Dodji Seketeli <dodji@redhat.com>
5824
5825 * c-common.h (set_underlying_type): Remove parm name from
5826 declaration.
5827
1baae426
RG
58282011-07-25 Romain Geissler <romain.geissler@gmail.com>
5829
5830 * c-pretty-print.h: Search c-common.h in c-family.
9faeb493 5831
fcb21722
JM
58322011-07-22 Jason Merrill <jason@redhat.com>
5833
76f86d00
JM
5834 PR c++/49793
5835 * c.opt (Wnarrowing): New.
5836
3a636414
JM
5837 PR c++/30112
5838 * c-common.h: Declare c_linkage_bindings.
5839 * c-pragma.c (handle_pragma_redefine_extname): Use it.
5840
fcb21722
JM
5841 PR c++/49813
5842 * c-opts.c (set_std_cxx0x): Set flag_isoc94 and flag_isoc99.
5843 * c-pretty-print.c (pp_c_cv_qualifiers): Check c_dialect_cxx as well
5844 as flag_isoc99 for 'restrict'.
5845 (pp_c_specifier_qualifier_list): Likewise for _Complex.
5846
02614448
ILT
58472011-07-21 Ian Lance Taylor <iant@google.com>
5848
5849 PR middle-end/49705
5850 * c-common.c (c_disable_warnings): New static function.
5851 (c_enable_warnings): New static function.
5852 (c_fully_fold_internal): Change local unused_p to bool. Call
5853 c_disable_warnings and c_enable_warnings rather than change
5854 c_inhibit_evaluation_warnings.
5855
34429675
JM
58562011-07-20 Jason Merrill <jason@redhat.com>
5857
5858 PR c++/6709 (DR 743)
5859 PR c++/42603 (DR 950)
5860 * c-common.h (CPP_KEYWORD, CPP_TEMPLATE_ID): Move from cp/parser.h.
5861 (CPP_NESTED_NAME_SPECIFIER, N_CP_TTYPES): Likewise.
5862 (CPP_DECLTYPE): New.
5863 * c-common.c (c_parse_error): Handle CPP_DECLTYPE.
5864
5d49b6a7
RG
58652011-07-19 Richard Guenther <rguenther@suse.de>
5866
5867 * c-common.c (pointer_int_sum): Use fold_build_pointer_plus.
5868 * c-omp.c (c_finish_omp_for): Likewise.
5869
e84a58ff
EB
58702011-07-12 Eric Botcazou <ebotcazou@adacore.com>
5871
5872 * c-ada-spec.c (dump_nested_types): Put semi-colon after empty loop
5873 body on the next line.
5874
329af3c7
JM
58752011-07-08 Jason Merrill <jason@redhat.com>
5876
4063e61b
JM
5877 PR c++/45437
5878 * c-omp.c (check_omp_for_incr_expr): Handle preevaluation.
5879
329af3c7
JM
5880 PR c++/49673
5881 * c-common.c (c_apply_type_quals_to_decl): Don't check
5882 TYPE_NEEDS_CONSTRUCTING.
5883
1a072294
RG
58842011-07-06 Richard Guenther <rguenther@suse.de>
5885
5886 * c-common.c (c_common_nodes_and_builtins):
5887 Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
5888
fce5dddd
RG
58892011-07-05 Richard Guenther <rguenther@suse.de>
5890
5891 * c-common.c (c_common_nodes_and_builtins): Build all common
5892 tree nodes first.
5893
45d439ac
JJ
58942011-06-27 Jakub Jelinek <jakub@redhat.com>
5895
56300785
JJ
5896 * c-common.h (c_tree_chain_next): New static inline function.
5897
45d439ac
JJ
5898 * c-common.c (check_builtin_function_arguments): Handle
5899 BUILT_IN_ASSUME_ALIGNED.
5900
e0a8ecf2
AM
59012011-06-21 Andrew MacLeod <amacleod@redhat.com>
5902
5903 * c-common.c: Add sync_ or SYNC__ to builtin names.
5904 * c-omp.c: Add sync_ or SYNC__ to builtin names.
dfb43cd5
PV
5905
59062011-06-20 Pierre Vittet <piervit@pvittet.com>
5907
5908 * c-pragma.h (pragma_handler_1arg, pragma_handler_2arg): New
5909 handler.
5910 (gen_pragma_handler): New union.
5911 (internal_pragma_handler): New type.
5912 (c_register_pragma_with_data)
5913 (c_register_pragma_with_expansion_and_data): New functions.
5914
5915 * c-pragma.c (registered_pragmas, c_register_pragma_1)
5916 (c_register_pragma, c_register_pragma_with_expansion)
5917 (c_invoke_pragma_handler): Changed to work with
5918 internal_pragma_handler.
5919 (c_register_pragma_with_data)
5920 (c_register_pragma_with_expansion_and_data): New functions.
5921
677f3fa8
JM
59222011-06-14 Joseph Myers <joseph@codesourcery.com>
5923
5924 * c-common.c: Include common/common-target.h.
5925 (handle_section_attribute): Use
5926 targetm_common.have_named_sections.
5927 * c-cppbuiltin.c: Include common/common-target.h.
5928 (c_cpp_builtins): Use targetm_common.except_unwind_info.
5929
d7fc8c14
RG
59302011-06-10 Richard Guenther <rguenther@suse.de>
5931
5932 * c-pretty-print.c (pp_c_type_specifier): Use pp_c_identifier
5933 to print a IDENTIFIER_NODE.
5934
10e48e39
RO
59352011-06-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5936 Joseph Myers <joseph@codesourcery.com>
5937
5938 * c.opt (fbuilding-libgcc): New option.
5939 * c-cppbuiltin.c (c_cpp_builtins): Define
5940 __LIBGCC_TRAMPOLINE_SIZE__ if flag_building_libgcc.
5941
6976ae51
JM
59422011-06-07 Jason Merrill <jason@redhat.com>
5943
3ff60975
JM
5944 * c-common.c (max_tinst_depth): Lower default to 900.
5945
6976ae51
JM
5946 * c-format.c (gcc_cxxdiag_char_table): Add 'S' format.
5947
009db074
RG
59482011-06-07 Richard Guenther <rguenther@suse.de>
5949
5950 * c-common.c (c_common_nodes_and_builtins): Do not set
5951 size_type_node or call set_sizetype.
5952
b4592b92
DS
59532011-06-07 Dodji Seketeli <dodji@redhat.com>
5954
5955 PR debug/49130
5956 * c-pretty-print.c (pp_c_integer_constant): Consider the canonical
9faeb493 5957 type when using pointer comparison to compare types.
b4592b92 5958
014ab419
JW
59592011-06-02 Jonathan Wakely <jwakely.gcc@gmail.com>
5960
5961 * c.opt: Add -Wdelete-non-virtual-dtor.
5962 * c-opts.c (c_common_handle_option): Include it in -Wall.
5963
4f60111f
NF
59642011-05-30 Nathan Froyd <froydnj@gcc.gnu.org>
5965
5966 PR bootstrap/49190
5967
5968 Revert:
5969 2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
5970
5971 * c-common.h (struct c_common_identifier): Inherit from tree_typed,
5972 not tree_common.
5973
4cc4f2f4
JJ
59742011-05-27 Jakub Jelinek <jakub@redhat.com>
5975
5976 PR c++/49165
5977 * c-common.c (c_common_truthvalue_conversion) <case COND_EXPR>: For
5978 C++ don't call c_common_truthvalue_conversion on void type arms.
5979
38e01f9e
NF
59802011-05-27 Nathan Froyd <froydnj@codesourcery.com>
5981
5982 * c-common.h (struct stmt_tree_s) [x_cur_stmt_list]: Change to a VEC.
5983 (stmt_list_stack): Define.
5984 (cur_stmt_list): Adjust for new type of x_cur_stmt_list.
5985 * c-semantics.c (push_stmt_list, pop_stmt_list): Likewise.
5986
92e948a8
NF
59872011-05-26 Nathan Froyd <froydnj@codesourcery.com>
5988
5989 * c-common.c (warning_candidate_p): Check for BLOCKs.
5990
a2fc3e63
NF
59912011-05-26 Nathan Froyd <froydnj@codesourcery.com>
5992
5993 * c-common.h (struct c_common_identifier): Inherit from tree_typed,
5994 not tree_common.
5995
0957c029
JJ
59962011-05-25 Jakub Jelinek <jakub@redhat.com>
5997
5998 * c-common.c (def_fn_type): Remove extra va_end.
5999
828fb3ba
JM
60002011-05-23 Jason Merrill <jason@redhat.com>
6001
6002 PR c++/48106
6003 * c-common.c (c_common_get_narrower): New.
6004 (shorten_binary_op, shorten_compare, warn_for_sign_compare): Use it.
6005
dde05067
NF
60062011-05-23 Nathan Froyd <froydnj@codesourcery.com>
6007
6008 * c-common.h (check_function_arguments): Tweak prototype of
6009 check_function_arguments.
6010 * c-common.c (check_function_arguments): Likewise. Adjust
6011 calls to check_function_nonnull, check_function_format, and
6012 check_function_sentinel.
6013 (check_function_sentinel): Take a FUNCTION_TYPE rather than
6014 separate attributes and typelist arguments. Use
6015 FOREACH_FUNCTION_ARGS to iterate over argument types.
6016
3c0d13bf
PC
60172011-05-15 Paolo Carlini <paolo.carlini@oracle.com>
6018
6019 * c-common.c (c_common_reswords): Reorder.
6020 * c-common.h (rid): Likewise.
6021
8242dd04
NF
60222011-05-10 Nathan Froyd <froydnj@codesourcery.com>
6023
6024 * c-common.c (def_fn_type): Don't call build_function_type, call
6025 build_function_type_array or build_varargs_function_type_array
6026 instead.
6027 (c_common_nodes_and_builtins): Likewise.
6028
3d528853
NF
60292011-05-05 Nathan Froyd <froydnj@codesourcery.com>
6030
6031 * c-common.c (c_add_case_label): Omit the loc argument to
6032 build_case_label.
6033 * c-common.h (build_case_label): Remove.
6034 * c-semantics.c (build_case_label): Remove.
6035
a04a722b
JM
60362011-05-05 Joseph Myers <joseph@codesourcery.com>
6037
6038 * c-objc.h (objc_start_method_definition): Update prototype.
6039 * stub-objc.c (objc_start_method_definition): Add extra parameter.
6040
e19a18d4
NF
60412011-05-04 Nathan Froyd <froydnj@codesourcery.com>
6042
6043 * c-common.c (check_main_parameter_types): Reindent. Don't use
6044 TYPE_ARG_TYPES directly.
6045 (handle_nonnull_attribute): Likewise.
6046 (sync_resolve_params): Likewise.
6047 * c-format.c (handle_format_arg_attribute): Likewise. Adjust call
6048 to check_format_string.
6049 (handle_format_attribute): Likewise.
6050 (check_format_string): Take a function type to examine instead of
6051 a type list. Use a function_arg_iterator to step through argument
6052 types.
6053
c62c040f
RG
60542011-05-04 Richard Guenther <rguenther@suse.de>
6055
6056 * c-common.c (fix_string_type): Use size_int for index type bounds.
6057 (start_fname_decls): Do not pass NULL to build_int_cst.
6058 (c_init_attributes): Likewise.
6059 * c-lex.c (c_lex_with_flags): Likewise.
6060
c12ff9d8
JM
60612011-04-27 Jason Merrill <jason@redhat.com>
6062
6063 * c-common.c (make_tree_vector_from_list): New.
6064 * c-common.h: Declare it.
6065
304dfbe3
RG
60662011-04-26 Richard Guenther <rguenther@suse.de>
6067
6068 PR preprocessor/48248
6069 * c-ppoutput.c (maybe_print_line): Always optimize newlines
6070 for output size with -P.
6071
3c0d13bf
PC
60722011-04-25 Paolo Carlini <paolo.carlini@oracle.com>
6073
6074 * c-common.c (struct c_common_resword): Add __underlying_type.
6075 * c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
6076
04695783
JM
60772011-04-20 Jim Meyering <meyering@redhat.com>
6078
6079 * c-format.c (init_dollar_format_checking): Remove useless
6080 if-before-free.
6081
0dc33c3c
NP
60822011-04-15 Nicola Pero <nicola.pero@meta-innovation.com>
6083
6084 * c-objc.h (objc_get_interface_ivars): Removed.
3c0d13bf 6085 (objc_detect_field_duplicates): New.
0dc33c3c 6086 * stub-objc.c: Likewise.
3c0d13bf 6087
c59633d9
NP
60882011-04-14 Nicola Pero <nicola.pero@meta-innovation.com>
6089
6090 * stub-objc.c (objc_declare_protocols): Renamed to
6091 objc_declare_protocol.
6092 * c-objc.h: Likewise.
3c0d13bf 6093
32dabdaf
NP
60942011-04-14 Nicola Pero <nicola.pero@meta-innovation.com>
6095
6096 * stub-objc.c (objc_declare_class): Updated argument name.
6097
81f653d6
NF
60982011-04-12 Nathan Froyd <froydnj@codesourcery.com>
6099
6100 * c-common.h (c_common_init_ts): Declare.
6101 * c-common.c (c_common_init_ts): Define.
6102
eb345401
NP
61032011-04-12 Nicola Pero <nicola.pero@meta-innovation.com>
6104
6105 * c-objc.h (objc_build_message_expr): Updated prototype.
6106 * stub-objc.c (objc_build_message_expr): Likewise.
9faeb493 6107
a358e188
MJ
61082011-04-12 Martin Jambor <mjambor@suse.cz>
6109
6110 * c-gimplify.c (c_genericize): Call cgraph_get_create_node instead
6111 of cgraph_node.
6112
e6313a78
RG
61132011-04-11 Richard Guenther <rguenther@suse.de>
6114
6115 * c-common.c (complete_array_type): Build a range type of
6116 proper type.
6117
dcf0c47e
NF
61182011-04-08 Nathan Froyd <froydnj@codesourcery.com>
6119
6120 * c-common.c (handle_sentinel_attribute): Don't use TYPE_ARG_TYPES.
6121 (handle_type_generic_attribute): Likewise.
6122
1ee44b26
JM
61232011-04-07 Jason Merrill <jason@redhat.com>
6124
6125 PR c++/48450
6126 * c-common.c (c_common_truthvalue_conversion): Don't ignore
6127 conversion from C++0x scoped enum.
6128
acce4e77
JM
61292011-04-06 Joseph Myers <joseph@codesourcery.com>
6130
6131 * c-target-def.h: New file.
6132 * c-target.def: New file.
6133 * c-target.h: New file.
6134 * c-common.c (targetcm): Don't define here.
6135 * c-common.h (default_handle_c_option): Declare.
6136 * c-format.c: Include c-target.h instead of target.h.
6137 * c-opts.c: Include c-target.h instead of target.h. Explicitly
6138 include tm.h.
6139 (default_handle_c_option): Move from targhooks.c.
6140
e2eefb55
JJ
61412011-03-29 Jakub Jelinek <jakub@redhat.com>
6142
6143 PR preprocessor/48248
6144 * c-ppoutput.c (print): Add src_file field.
6145 (init_pp_output): Initialize it.
6146 (maybe_print_line): Don't optimize by adding up to 8 newlines
6147 if map->to_file and print.src_file are different file.
6148 (print_line): Update print.src_file.
6149
ba78087b
KT
61502011-03-25 Kai Tietz <ktietz@redhat.com>
6151
6152 * c-ada-spec.c (compare_comment): Use filename_cmp
6153 instead of strcmp for filename.
6154
0edf1bb2
JL
61552011-03-25 Jeff Law <law@redhat.com>
6156
adfac8df 6157 * c-common.c (def_fn_type): Add missing va_end.
0edf1bb2 6158
c7dc8804
JM
61592011-03-25 Jason Merrill <jason@redhat.com>
6160
6161 * c.opt: Add -std=c++03.
6162
d1d879b1
EB
61632011-03-22 Eric Botcazou <ebotcazou@adacore.com>
6164
6165 * c-ada-spec.c (dump_ada_template): Skip non-class instances.
6166
3f8257db 61672011-03-17 Kai Tietz <ktietz@redhat.com>
62d784f7
KT
6168
6169 PR target/12171
5050afdf
KT
6170 * c-pretty-print.c (pp_c_specifier_qualifier_list):
6171 Display allowed attributes for function pointer types.
6172 (pp_c_attributes_display): New function to display
6173 attributes having affects_type_identity flag set to true.
6174 * c-pretty-print.h (pp_c_attributes_display): New prototype.
6175
62d784f7
KT
6176 * c-common.c (c_common_attribute_table):
6177 Add new element.
6178 (c_common_format_attribute_table): Likewise.
6179
82d37118
JM
61802011-03-18 Jason Merrill <jason@redhat.com>
6181
49a000c3
JM
6182 * c.opt (fconstexpr-depth): Add Var(max_constexpr_depth).
6183 * c-common.h: Don't declare it here.
6184 * c-common.c: Or define it here.
6185 * c-opts.c (c_common_handle_option): Or set it here.
6186
82d37118
JM
6187 PR c++/35315
6188 * c-common.c (handle_transparent_union_attribute): Don't
6189 make a duplicate type in C++.
6190
17bc631c
JM
61912011-03-15 Jason Merrill <jason@redhat.com>
6192
6193 * c-common.c (max_constexpr_depth): New.
6194 * c-common.h: Declare it.
6195 * c-opts.c (c_common_handle_option): Set it.
6196 * c.opt (fconstexpr-depth): New option.
6197
1b9b91a6
JM
61982011-03-11 Jason Merrill <jason@redhat.com>
6199
f231b5ff
JM
6200 * c-common.c (attribute_takes_identifier_p): Add missing const.
6201
1b9b91a6
JM
6202 PR c++/46803
6203 * c-common.c (attribute_takes_identifier_p): Assume that an
6204 unknown attribute takes an identifier.
6205
a19e4d44
NF
62062011-03-07 Nathan Froyd <froydnj@codesourcery.com>
6207
6208 PR c/47786
6209 * c-common.c (c_type_hash): Call list_length instead of iterating
6210 through DECL_CHAIN. Rename 'i' to 'n_elements'.
6211
982d62f6
JJ
62122011-02-19 Jakub Jelinek <jakub@redhat.com>
6213
6214 PR c/47809
6215 * c-common.c (c_fully_fold_internal): Handle VIEW_CONVERT_EXPR.
6216
0a256240
NP
62172011-02-17 Iain Sandoe <iains@gcc.gnu.org>
6218
6219 * c.opt (fobjc-abi-version=) New.
6220 (fobjc-nilcheck): New.
6221
ba9e6dd5
NF
62222011-02-03 Nathan Froyd <froydnj@codesourcery.com>
6223
6224 PR c++/46890
6225 * c-common.h (keyword_is_decl_specifier): Declare.
6226 * c-common.c (keyword_is_decl_specifier): Define.
6227 (keyword_is_function_specifier): New function.
6228
7273813a
JJ
62292011-01-26 Jakub Jelinek <jakub@redhat.com>
6230
6231 PR c/47473
6232 * c-lex.c (interpret_float): If CPP_N_IMAGINARY, ensure
6233 EXCESS_PRECISION_EXPR is created with COMPLEX_TYPE instead of
6234 REAL_TYPE.
6235
908ef79b
AC
62362011-01-26 Arnaud Charlet <charlet@adacore.com>
6237
6238 * c-ada-spec.c (dump_generic_ada_node): Avoid dereferencing null type.
6239
237e9384
JJ
62402011-01-26 Jakub Jelinek <jakub@redhat.com>
6241
6242 PR pch/47430
6243 * c-opts.c (c_common_post_options): Call c_common_no_more_pch
6244 after init_c_lex if pch_file is set.
6245
47ea1edf
DK
62462011-01-26 Dave Korn <dave.korn.cygwin@gmail.com>
6247
d4dba752 6248 PR c++/43601
47ea1edf
DK
6249 * c.opt (-fkeep-inline-dllexport): New switch.
6250
2aa9c6ae
RG
62512011-01-12 Richard Guenther <rguenther@suse.de>
6252
6253 PR middle-end/32511
6254 * c-common.c (handle_weak_attribute): Warn instead of error
6255 on declaring an inline function weak.
6256
7bd11157
TT
62572011-01-05 Tom Tromey <tromey@redhat.com>
6258
6259 * c-common.h (lvalue_error): Update.
6260 * c-common.c (lvalue_error): Add 'loc' argument. Call error_at,
6261 not error.
6262
0e66e494 62632010-12-29 Nicola Pero <nicola.pero@meta-innovation.com>
9faeb493 6264
b4f588c4
NP
6265 PR objc/47075
6266 * c-objc.h (objc_finish_message_expr): Added argument to
6267 prototype.
6268
f4da8dce
NF
62692010-12-22 Nathan Froyd <froydnj@codesourcery.com>
6270
6271 * c-common.c (handle_nonnull_attribute, handle_sentinel_attribute):
6272 Use prototype_p.
6273
46270f14
NP
62742010-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
6275
6276 * c-objc.h (objc_maybe_warn_exceptions): New.
9faeb493 6277 * stub-objc.c (objc_maybe_warn_exceptions): New.
46270f14 6278
4816c593
NF
62792010-12-10 Nathan Froyd <froydnj@codesourcery.com>
6280
6281 * c-common.h (readonly_error): Declare.
6282 * c-common.c (readonly_error): Define.
6283
7a6daeb0
NF
62842010-12-09 Nathan Froyd <froydnj@codesourcery.com>
6285
6286 * c-common.h (invalid_indirection_error): Declare.
6287 * c-common.c (invalid_indirection_error): Define.
6288
892f6119
RG
62892010-12-03 Richard Guenther <rguenther@suse.de>
6290
6291 PR c/46745
6292 * c-pretty-print.c (pp_c_postfix_expression): Handle MEM_REF.
6293 (pp_c_unary_expression): Likewise.
6294 (pp_c_expression): Likewise.
6295
6c39e757
NP
62962010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
6297
6298 * c-common.h (objc_finish_function): New.
6299 (objc_non_volatilized_type): Removed.
6300 (objc_type_quals_match): Removed.
6301 * stub-objc.c (objc_finish_function): New.
6302 (objc_non_volatilized_type): Removed.
6303 (objc_type_quals_match): Removed.
9faeb493 6304
7c475d11
JM
63052010-11-30 Joseph Myers <joseph@codesourcery.com>
6306
6307 * c-common.h (parse_optimize_options): Declare.
6308 * c-cppbuiltin.c, c-format.c, c-gimplify.c, c-lex.c, c-omp.c,
6309 c-pch.c, c-pragma.c, c-semantics.c: Don't include toplev.h.
6310
71f3e391
JM
63112010-11-29 Joseph Myers <joseph@codesourcery.com>
6312
6313 * c-opts.c (check_deps_environment_vars): Use getenv instead of
6314 GET_ENVIRONMENT.
6315 * c-pch.c (O_BINARY): Don't define here.
6316 * c-pragma.h: Include "cpplib.h" instead of <cpplib.h>.
6317
d5fabb58
JM
63182010-11-25 Joseph Myers <joseph@codesourcery.com>
6319
6320 * c-cppbuiltin.c (c_cpp_builtins): Pass &global_options to
6321 targetm.except_unwind_info.
6322
299404a1
JM
63232010-11-23 Joseph Myers <joseph@codesourcery.com>
6324
6325 * c-opts.c (c_common_handle_option): Pass location to
6326 set_struct_debug_option.
6327
c98cd5bf
JM
63282010-11-23 Joseph Myers <joseph@codesourcery.com>
6329
6330 * c-common.c (visibility_options): Move from ../opts.c.
6331 * c-common.h (struct visibility_flags, visibility_options):
6332 Declare here.
6333 * c-opts.c (finish_options): Rename to c_finish_options.
6334 (c_common_init): Update call to finish_options.
6335
a9546771
NP
63362010-11-22 Nicola Pero <nicola.pero@meta-innovation.com>
6337
6338 PR objc/34033
6339 * c-lex.c (lex_string): Check that each string in an Objective-C
6340 string concat sequence starts with either one or zero '@', and
6341 that there are no spurious '@' signs at the end.
6342
24a57808
JM
63432010-11-20 Joseph Myers <joseph@codesourcery.com>
6344
6345 * c-pragma.c: Remove conditionals on HANDLE_PRAGMA_PACK,
6346 HANDLE_PRAGMA_PACK_PUSH_POP, HANDLE_PRAGMA_WEAK and
6347 HANDLE_PRAGMA_VISIBILITY.
6348 * c-pragma.h (HANDLE_PRAGMA_WEAK, HANDLE_PRAGMA_PACK,
6349 HANDLE_PRAGMA_VISIBILITY): Don't define.
6350 (HANDLE_SYSV_PRAGMA, HANDLE_PRAGMA_PACK_PUSH_POP): Don't test.
6351
a9aa2c3a
NF
63522010-11-20 Nathan Froyd <froydnj@codesourcery.com>
6353
6354 PR c++/16189
6355 PR c++/36888
6356 PR c++/45331
6357 * c-common.h (keyword_begins_type_specifier): Declare.
6358 (keyword_is_storage_class_specifier): Declare.
6359 (keyword_is_type_qualifier): Declare.
6360 * c-common.c (keyword_begins_type_specifier): New function.
6361 (keyword_is_storage_class_specifier): New function.
6362 (keyword_is_type_qualifier): Declare.
6363
5386338c
JM
63642010-11-19 Joseph Myers <joseph@codesourcery.com>
6365
6366 PR c/46547
6367 * c-common.c (in_late_binary_op): Define.
6368 (c_common_truthvalue_conversion): Check in_late_binary_op before
6369 calling c_save_expr.
6370 * c-common.h (in_late_binary_op): Declare.
6371
69ccdddb
JM
63722010-11-19 Joseph Myers <joseph@codesourcery.com>
6373
6374 * c-opts.c (c_common_handle_option): Update calls to
6375 set_struct_debug_option.
6376
6b192a09
NP
63772010-11-19 Nicola Pero <nicola.pero@meta-innovation.com>
6378
6379 * c-common.h (objc_declare_protocols): Added additional argument.
6380 * stub-objc.c (objc_declare_protocol): Same change.
9faeb493 6381
fb52b50a
NF
63822010-11-18 Nathan Froyd <froydnj@codesourcery.com>
6383
6384 PR c/33193
6385 * c-common.h (build_real_imag_expr): Declare.
6386 * c-semantics.c (build_real_imag_expr): Define.
6387
b37421c6
JM
63882010-11-17 Joseph Myers <joseph@codesourcery.com>
6389
6390 * c-opts.c (c_common_parse_file): Take no arguments.
6391 * c-common.h (c_common_parse_file): Update prototype.
6392
07078664
JJ
63932010-11-16 Jakub Jelinek <jakub@redhat.com>
6394
6395 PR c++/46401
6396 * c-common.c (warning_candidate_p): Don't track non-const calls
6397 or STRING_CSTs.
6398
c6a13190
ILT
63992010-11-15 Ian Lance Taylor <iant@google.com>
6400
6401 * c-lex.c (init_c_lex): Set macro debug callbacks if
6402 flag_dump_go_spec is set.
6403
925e8657
NP
64042010-11-15 Nicola Pero <nicola.pero@meta-innovation.com>
6405
6406 * c-common.h (objc_build_incr_expr_for_property_ref): New.
6407 * stub-objc.c (objc_build_incr_expr_for_property_ref): New.
6408
bb0a9581
NF
64092010-11-15 Nathan Froyd <froydnj@codesourcery.com>
6410
6411 PR preprocessor/45038
6412 * c-cppbuiltin.c (c_cpp_builtins): Use different format for C++
6413 dialects.
6414
c5fa0890
JM
64152010-11-12 Joseph Myers <joseph@codesourcery.com>
6416
6417 * c-common.h (c_family_lang_mask): Declare.
6418 * c-opts.c (c_family_lang_mask): Make extern.
6419 * c-pragma.c (handle_pragma_diagnostic): Use
6420 control_warning_option.
6421
a4d8c676
JM
64222010-11-12 Joseph Myers <joseph@codesourcery.com>
6423
6424 * c-common.c (parse_optimize_options): Update call to
6425 decode_options.
6426 * c-common.h (c_common_handle_option): Update prototype.
6427 * c-opts.c (c_common_handle_option): Take location_t parameter and
6428 pass it to other functions.
6429
f954bd2c
JM
64302010-11-11 Joseph Myers <joseph@codesourcery.com>
6431
6432 * c-opts.c (warning_as_error_callback): Remove.
6433 (c_common_initialize_diagnostics): Don't call
6434 register_warning_as_error_callback.
6435 (c_common_handle_option): Handle -Werror=normalized= here.
6436
d8a07487
JM
64372010-11-10 Joseph Myers <joseph@codesourcery.com>
6438
6439 * c-common.c (handle_mode_attribute): Use %' and word "signedness"
6440 in diagnostic.
6441 * c-opts.c (c_common_parse_file): Start diagnostics with lowercase
6442 letter.
6443 * c-pragma.c (handle_pragma_target, handle_pragma_optimize):
6444 Remove trailing '.' from diagnostics.
6445 * c.opt (Wwrite-strings_: Avoid '`' in help text.
6446
d5478783
JM
64472010-11-10 Joseph Myers <joseph@codesourcery.com>
6448
6449 * c-common.c (parse_optimize_options): Pass global_dc to
6450 decode_options.
6451 * c-opts.c (c_common_handle_option): Pass &global_options to
6452 set_Wstrict_aliasing.
6453 * c.opt (v): Don't mark Common or document here.
6454
91ebb981
IS
64552010-11-06 Iain Sandoe <iains@gcc.gnu.org>
6456
6457 PR target/44981
6458 * c-format.c (format_type): New type gcc_objc_string_format_type.
6459 (valid_stringptr_type_p): New.
6460 (handle_format_arg_attribute): Use valid_stringptr_type_p ().
9faeb493 6461 (check_format_string): Pass expected type, use
91ebb981
IS
6462 valid_stringptr_type_p (), check that the format string types are
6463 consistent with the format specification.
6464 (decode_format_attr): Warn if NSString is used outside objective-c.
6465 (format_types_orig): Add NSString.
6466 (format_name): New.
6467 (format_flags): New.
6468 (check_format_arg): Handle format strings requiring an external parser.
6469 first_target_format_type: New variable.
6470 (handle_format_attribute): Set up first_target_format_type, pass the
6471 expected format arg string type to check_format_string().
6472 * c-common.h (FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL): New flag.
6473 * stub-objc.c (objc_string_ref_type_p): New.
6474 (objc_check_format_arg): New.
6475
bede2adc
NP
64762010-11-04 Nicola Pero <nicola.pero@meta-innovation.com>
6477
9faeb493 6478 Fixed using the Objective-C 2.0 dot-syntax with class names.
bede2adc
NP
6479 * c-common.h (objc_build_class_component_ref): New.
6480 * stub-objc.c (objc_build_class_component_ref): New.
6481
9a179d01
NP
64822010-11-03 Nicola Pero <nicola.pero@meta-innovation.com>
6483
6484 * c.opt (Wproperty-assign-default): New option.
6485
22d8d616
NP
64862010-11-03 Nicola Pero <nicola.pero@meta-innovation.com>
6487
6488 Implemented -fobjc-std=objc1 flag.
6489 * c.opt (fobjc-std=objc1): New option.
6490
2debdb4f
NP
64912010-11-01 Nicola Pero <nicola.pero@meta-innovation.com>
6492
6493 Implemented format and noreturn attributes for Objective-C methods.
6494 * c-common.c (handle_noreturn_attribute): Recognize 'noreturn'
6495 attribute for Objective-C methods.
6496
ec52b111
JM
64972010-10-31 Jason Merrill <jason@redhat.com>
6498
6499 * c-common.c (conversion_warning, warn_for_collisions_1): Use
6500 EXPR_LOC_OR_HERE.
6501
46a88c12
NP
65022010-10-30 Nicola Pero <nicola.pero@meta-innovation.com>
6503
6504 Implemented Objective-C 2.0 @property, @synthesize and @dynamic.
6505 * c-common.h (enum rid): Removed RID_COPIES and RID_IVAR.
6506 (objc_add_property_declaration): Removed arguments for copies and
6507 ivar.
6508 (objc_build_getter_call): Renamed to
6509 objc_maybe_build_component_ref.
6510 (objc_build_setter_call): Renamed to objc_maybe_build_modify_expr.
6511 (objc_is_property_ref): New.
6512 * c-common.c (c_common_reswords): Removed copies and ivar.
6513 * stub-objc.c (objc_add_property_declaration): Removed arguments
6514 for copies and ivar.
6515 (objc_build_getter_call): Renamed to
6516 objc_maybe_build_component_ref.
6517 (objc_build_setter_call): Renamed to objc_maybe_build_modify_expr.
6518 (objc_is_property_ref): New.
9faeb493 6519
1e4bf85b
AC
65202010-10-29 Arnaud Charlet <charlet@adacore.com>
6521 Matthew Gingell <gingell@adacore.com>
6522
6523 * c-ada-spec.c (separate_class_package): New function.
6524 (pp_ada_tree_identifier): Prefix references to C++ classes with the
6525 name of their enclosing package.
6526 (print_ada_declaration): Use separate_class_package.
6527
81f0bab2
JM
65282010-10-27 Jason Merrill <jason@redhat.com>
6529
2b08f2c5
JM
6530 * c-common.c (c_common_reswords): Add __is_literal_type.
6531 * c-common.h (enum rid): Add RID_IS_LITERAL_TYPE.
6532
81f0bab2
JM
6533 * c-common.c (check_case_value): Remove special C++ code.
6534
200290f2
NP
65352010-10-27 Nicola Pero <nicola.pero@meta-innovation.com>
6536
6537 * c-common.h (enum rid): Added RID_READWRITE, RID_ASSIGN,
6538 RID_RETAIN, RID_COPY and RID_NONATOMIC. Updated RID_FIRST_PATTR
6539 and RID_LAST_PATTR.
6540 (objc_add_property_declaration): Added additional arguments.
6541 (objc_property_attribute_kind): Removed.
6542 (objc_set_property_attr): Removed.
6543 * c-common.c (c_common_reswords): Added readwrite, assign, retain,
6544 copy and nonatomic.
6545 * stub-objc.c (objc_add_property_declaration): Added additional
6546 arguments.
6547 (objc_set_property_attr): Removed.
9faeb493 6548
f614132b
NP
65492010-10-27 Nicola Pero <nicola.pero@meta-innovation.com>
6550
6551 * c-common.h (objc_add_property_variable): Renamed to
6552 objc_add_property_declaration. Added location argument.
6553 * stub-objc.c (objc_add_property_variable): Same change.
b1726d6c 6554
b8a18805
NP
65552010-10-23 Nicola Pero <nicola.pero@meta-innovation.com>
6556
6557 * c-common.h (objc_maybe_printable_name): New.
6558 * stub-objc.c (objc_maybe_printable_name): New.
6559
3f8257db
JJ
65602010-10-22 Artjoms Sinkarovs <artyom.shinakroff@gmail.com>
6561 Andrew Pinski <pinskia@gmail.com>
30cd1c5d
AS
6562
6563 * c-common.h (c_common_mark_addressable_vec): Declare.
6564 * c-common.c (c_common_mark_addressable_vec): New function.
6565
249a82c4
NP
65662010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
6567
6568 * c-common.h (objc_set_method_type): Removed.
6569 (objc_add_method_declaration): Added boolean argument.
6570 (objc_start_method_definition): Same change.
6571 (objc_build_method_signature): Same change.
6572 * stub-objc.c (objc_set_method_type): Removed.
6573 (objc_add_method_declaration): Added boolean argument.
6574 (objc_start_method_definition): Same change.
6575 (objc_build_method_signature): Same change.
6576
977e30bc
NP
65772010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
6578
6579 * c-common.h (finish_file): Removed.
6580 (objc_write_global_declarations): New.
6581 * c-opts.c (c_common_parse_file): Do not call finish_file.
6582 * stub-objc.c (objc_write_global_declarations): New.
9faeb493 6583
da57d1b9
NP
65842010-10-18 Nicola Pero <nicola.pero@meta-innovation.com>
6585
6586 Implemented parsing @synthesize and @dynamic for
6587 Objective-C/Objective-C++.
6588 * c-common.h (enum rid): Add RID_AT_SYNTHESIZE and RID_AT_DYNAMIC.
6589 (objc_add_synthesize_declaration): New.
6590 (objc_add_dynamic_declaration): New.
6591 * c-common.c (c_common_reswords): Add synthesize and dynamic.
6592 * stub-objc.c (objc_add_synthesize_declaration): New.
6593 (objc_add_dynamic_declaration): New.
9faeb493 6594
0069111f
MM
65952010-10-18 Michael Meissner <meissner@linux.vnet.ibm.com>
6596
6597 PR target/46041
6598 * c-cppbuiltin.c (mode_has_fma): Move function here from
6599 builtins.c. Don't use the fma optab, instead just use the
6600 HAVE_fma* macros, so that __FP_FAST_FMA* will be defined when
6601 using -save-temps.
6602
e426b47b
NP
66032010-10-18 Nicola Pero <nicola.pero@meta-innovation.com>
6604
6605 Merge from 'apple/trunk' branch on FSF servers.
0069111f 6606
3f8257db 6607 2005-11-08 Fariborz Jahanian <fjahanian@apple.com>
e426b47b 6608
9faeb493 6609 Radar 4330422
e426b47b
NP
6610 * c-common.h (objc_non_volatilized_type): New declaration
6611 * stub-objc.c (objc_non_volatilized_type): New stub.
6612
90fbfdc3
NP
66132010-10-17 Nicola Pero <nicola.pero@meta-innovation.com>
6614
e426b47b 6615 Merge from 'apple/trunk' branch on FSF servers.
90fbfdc3 6616
3f8257db 6617 2006-03-27 Fariborz Jahanian <fjahanian@apple.com>
90fbfdc3 6618
9faeb493 6619 Radar 4133425
90fbfdc3 6620 * c-common.h (objc_diagnose_private_ivar): New decl.
0069111f 6621 * stub-objc.c (objc_diagnose_private_ivar): New stub.
90fbfdc3 6622
c37d8c30
IS
66232010-10-17 Iain Sandoe <iains@gcc.gnu.org>
6624
6625 * c-common.c (c_common_reswords): Add package, RID_AT_PACKAGE.
6626 * c-common.h (enum rid): Add RID_AT_PACKAGE.
6627 (objc_ivar_visibility_kind): New enum.
6628 (objc_set_visibility): Adjust prototype to use visibility enum.
0069111f 6629 * stub-objc.c (objc_set_visibility): Adjust stub to use
c37d8c30
IS
6630 visibility enum.
6631
1b1562a5
MM
66322010-10-14 Michael Meissner <meissner@linux.vnet.ibm.com>
6633
6634 * c-cppbuiltin.c (builtin_define_float_constants): Emit
6635 __FP_FAST_FMA, __FP_FAST_FMAF, and __FP_FAST_FMAL if the machine
6636 has the appropriate fma builtins.
6637 (c_cpp_builtins): Adjust call to builtin_define_float_constants.
6638
668ea4b1
IS
66392010-10-14 Iain Sandoe <iains@gcc.gnu.org>
6640
1b1562a5 6641 merge from FSF apple 'trunk' branch.
3f8257db 6642 2006 Fariborz Jahanian <fjahanian@apple.com>
1b1562a5 6643
668ea4b1
IS
6644 Radars 4436866, 4505126, 4506903, 4517826
6645 * c-common.c (c_common_resword): Define @property and its attributes.
6646 * c-common.h: Define property attribute enum entries.
6647 (OBJC_IS_PATTR_KEYWORD): New.
6648 (objc_property_attribute_kind): New enum.
6649 Declare objc_set_property_attr (), objc_add_property_variable (),
6650 objc_build_getter_call () and objc_build_setter_call ().
6651 * stub-objc.c (objc_set_property_attr): New stub.
6652 (objc_add_property_variable): Likewise.
6653 (objc_build_getter_call): Likewise.
6654 (objc_build_setter_call) Likewise.
1b1562a5 6655
a1178b30
IS
66562010-10-13 Iain Sandoe <iains@gcc.gnu.org>
6657
1b1562a5 6658 merge from FSF apple 'trunk' branch.
3f8257db 6659 2006-04-26 Fariborz Jahanian <fjahanian@apple.com>
a1178b30
IS
6660
6661 Radar 3803157 (method attributes)
6662 * c-common.c (handle_deprecated_attribute): Recognize
6663 objc methods as valid declarations.
6664 * c-common.h: Declare objc_method_decl ().
1b1562a5 6665 * stub-objc.c (objc_method_decl): New stub.
a1178b30 6666
a75bfaa6
JM
66672010-10-08 Joseph Myers <joseph@codesourcery.com>
6668
6669 * c-common.c (parse_optimize_options): Call
6670 decode_cmdline_options_to_array_default_mask before
6671 decode_options. Update arguments to decode_options.
6672 * c-common.h (c_common_init_options_struct): Declare.
6673 * c-opts.c (c_common_init_options_struct): New. Split out from
6674 c_common_init_options.
6675
f05b9d93
NP
66762010-10-06 Nicola Pero <nicola.pero@meta-innovation.com>
6677
6678 Implemented fast enumeration for Objective-C.
6679 * c-common.h (objc_finish_foreach_loop): New.
6680 * stub-objc.c (objc_finish_foreach_loop): New.
6681
1ebe4b4f
JM
66822010-10-05 Joseph Myers <joseph@codesourcery.com>
6683
6684 * c-common.h (struct diagnostic_context): Don't declare here.
6685 (c_common_initialize_diagnostics): Declare using
6686 diagnostic_context typedef.
6687 * c-opts.c (c_common_handle_option): Pass global_dc to
6688 handle_generated_option.
6689
d4d24ba4
JM
66902010-10-04 Joseph Myers <joseph@codesourcery.com>
6691
6692 * c-opts.c (c_common_handle_option): Pass &global_options_set to
6693 handle_generated_option.
6694
478a1c5b
ILT
66952010-10-03 Ian Lance Taylor <iant@google.com>
6696
6697 * c.opt (-fplan9-extensions): New option.
6698
82a1c2fe
FXC
66992010-10-03 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
6700
6701 * c-cppbuiltin.c (define__GNUC__, builtin_define_type_precision):
6702 Remove.
6703 (c_cpp_builtins): Call functions from cppbuiltin.c instead
6704 of duplicating code.
6705
92902b1b
IS
67062010-09-30 Iain Sandoe <iains@gcc.gnu.org>
6707
6708 * c-common.c: Add two new entries for @optional
6709 and @required keywords.
6710
6711 merge from FSF 'apple/trunk' branch.
3f8257db 6712 2006-01-30 Fariborz Jahanian <fjahanian@apple.com>
92902b1b
IS
6713
6714 Radar 4386773
6715 * c-common.h (RID_AT_OPTIONAL, RID_AT_REQUIRED): Two new
6716 objective-c keywords.
6717 (objc_set_method_opt): New declaration.
6718 * stub-objc.c (objc_set_method_opt): New stub.
9faeb493 6719
46625112
JM
67202010-09-30 Joseph Myers <joseph@codesourcery.com>
6721
6722 * c-common.c (handle_optimize_attribute): Pass &global_options to
6723 cl_optimization_save and cl_optimization_restore.
6724 * c-opts.c (c_common_handle_option): Pass &global_options to
6725 handle_generated_option.
6726 * c-pragma.c (handle_pragma_diagnostic): Use option_flag_var.
6727 (handle_pragma_pop_options, handle_pragma_reset_options): Pass
6728 &global_options to cl_optimization_restore.
6729
49b91f05
NP
67302010-09-30 Nicola Pero <nicola.pero@meta-innovation.com>
6731
6732 * c-lex.c (c_lex_with_flags): Updated comments for CPP_AT_NAME
6733 Objective-C/Objective-C++ keywords.
6734
13ed556f 67352010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
a6341d57 6736
9faeb493
UB
6737 Merge from 'apple/trunk' branch on FSF servers.
6738
3f8257db 6739 2005-10-04 Fariborz Jahanian <fjahanian@apple.com>
a6341d57
NP
6740
6741 Radar 4281748
6742 * c-common.h (objc_check_global_decl): New declaration.
6743 * stub-objc.c (objc_check_global_decl): New stub.
6744
f0036cca
JM
67452010-09-29 Joseph Myers <joseph@codesourcery.com>
6746
6747 * c.opt: Don't use VarExists.
6748
e3339d0f
JM
67492010-09-29 Joseph Myers <joseph@codesourcery.com>
6750
6751 * c-common.c (c_cpp_error): Update names of diagnostic_context
6752 members.
6753 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Update names of
6754 cl_optimization members.
6755 * c-opts.c (warning_as_error_callback, c_common_handle_option,
6756 sanitize_cpp_opts, finish_options): Update names of cpp_options
6757 members.
6758
1973201f
NP
67592010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
6760
6761 * c-common.h (OBJC_IS_CXX_KEYWORD): New macro. Updated comments.
6762 (objc_is_reserved_word): Removed.
6763 * c-common.c: Updated comments.
6764 * c-lex.c (c_lex_with_flags): Use OBJC_IS_CXX_KEYWORD instead of
6765 objc_is_reserved_word.
6766 * stub-objc.c (objc_is_reserved_word): Removed.
6767
f7e71da5
IS
67682010-09-28 Iain Sandoe <iains@gcc.gnu.org>
6769
9faeb493 6770 * c-common.h (objc_add_method_declaration): Adjust prototype to
f7e71da5
IS
6771 include attributes.
6772 (objc_start_method_definition): Likewise.
6773 (objc_build_keyword_decl): Likewise.
6774 * stub-objc.c:(objc_add_method_declaration): Handle attributes.
6775 (objc_start_method_definition): Likewise.
6776 (objc_build_keyword_decl): Likewise.
6777
c165dca7
IS
67782010-09-28 Iain Sandoe <iains@gcc.gnu.org>
6779
6780 * c-common.h (objc_start_class_interface): Adjust prototype.
6781 (objc_start_category_interface): Likewise.
6782 (objc_start_protocol): Likewise.
6783 * stub-objc.c (objc_start_protocol): Adjust for extra argument.
6784 (objc_start_class_interface): Likewise.
6785 (objc_start_category_interface): Likewise.
6786
7458026b
ILT
67872010-09-27 Ian Lance Taylor <iant@google.com>
6788
6789 * c-common.c (c_common_attribute_table): Add no_split_stack.
6790 (handle_no_split_stack_attribute): New static function.
6791
b581b85b
NP
67922010-09-27 Nicola Pero <nicola.pero@meta-innovation.com>
6793
9faeb493 6794 Merge from 'apple/trunk' branch on FSF servers.
b581b85b 6795
3f8257db 6796 2005-12-15 Fariborz Jahanian <fjahanian@apple.com>
b581b85b 6797
9faeb493 6798 Radar 4229905
b581b85b
NP
6799 * c-common.h (objc_have_common_type): New declaration.
6800 * stub-objc.c (objc_have_common_type): New stub.
6801
6802 2005-06-22 Ziemowit Laski <zlaski@apple.com>
6803
6804 Radar 4154928
6805 * c-common.h (objc_common_type): New prototype.
9faeb493 6806 * stub-objc.c (objc_common_type): New stub.
b581b85b 6807
46a4da10
JH
68082010-09-24 Jan Hubicka <jh@suse.cz>
6809
6810 * c-common.c (handle_leaf_attribute): New function.
6811 (struct attribute_spec c_common_att): Add leaf.
6812
e200444e
JM
68132010-09-22 Joseph Myers <joseph@codesourcery.com>
6814
6815 * c.opt (-all-warnings, -ansi, -assert, -assert=, -comments,
6816 -comments-in-macros, -define-macro, -define-macro=, -dependencies,
6817 -dump, -dump=, -imacros, -imacros=, -include, -include=,
6818 -include-barrier, -include-directory, -include-directory=,
6819 -include-directory-after, -include-directory-after=,
6820 -include-prefix, -include-prefix=, -include-with-prefix,
6821 -include-with-prefix=, -include-with-prefix-after,
6822 -include-with-prefix-after=, -include-with-prefix-before,
6823 -include-with-prefix-before=, -no-integrated-cpp,
6824 -no-line-commands, -no-standard-includes, -no-warnings, -output,
6825 -output=, -pedantic, -pedantic-errors, -preprocess,
6826 -print-missing-file-dependencies, -trace-includes, -traditional,
6827 -traditional-cpp, -trigraphs, -undefine-macro, -undefine-macro=,
6828 -user-dependencies, -verbose, -write-dependencies,
6829 -write-user-dependencies, no-integrated-cpp, traditional): New.
6830
29a80ea6
NP
68312010-09-21 Nicola Pero <nicola.pero@meta-innovation.com>
6832
6833 PR objc/23710
ac1fc2fc
NP
6834 * c-common.h (objc_start_method_definition): Return bool instead
6835 of void.
6836 * stub-objc.c (objc_start_method_definition): Return bool instead
6837 of void.
6838
68392010-09-21 Nicola Pero <nicola.pero@meta-innovation.com>
6840
6841 PR objc/25965
6842 * c-common.h (objc_get_interface_ivars): New declaration.
6843 * stub-objc.c (objc_get_interface_ivars): New stub.
29a80ea6 6844
de621752
ILT
68452010-09-15 Ian Lance Taylor <iant@google.com>
6846
6847 * c-common.c (parse_optimize_options): Do not capitalize warning
06730c5d 6848 messages. Remove period at end of warning message.
de621752 6849
ba885ec5
NS
68502010-09-09 Nathan Sidwell <nathan@codesourcery.com>
6851
6852 * c-common.c (handle_alias_ifunc_attribute): New, broken out of ...
6853 (handle_alias_attribute): ... here.
6854 (handle_ifunc_attribute): New.
6855
c5ee1358
MM
68562010-09-06 Mark Mitchell <mark@codesourcery.com>
6857
6858 * c-common.h (do_warn_double_promotion): Declare.
6859 * c-common.c (do_warn_double_promotion): Define.
6860
0a0b3574
MM
68612010-09-05 Mark Mitchell <mark@codesourcery.com>
6862
6863 * c.opt (Wdouble-promotion): New.
6864
d1779886
JM
68652010-09-02 Joseph Myers <joseph@codesourcery.com>
6866
6867 * c.opt (falt-external-templates, fhuge-objects, fvtable-gc,
6868 fvtable-thunks, fxref): Mark no longer supported in help text.
6869
2d2bd949
JM
68702010-09-02 Joseph Myers <joseph@codesourcery.com>
6871
6872 * c.opt (Wimport, fall-virtual, falt-external-templates,
6873 fdefault-inline, fenum-int-equiv, fexternal-templates,
6874 fguiding-decls, fhonor-std, fhuge-objects, flabels-ok,
6875 fname-mangling-version-, fnew-abi, fnonnull-objects,
6876 foptional-diags, fsquangle, fstrict-prototype, fthis-is-variable,
6877 fvtable-gc, fvtable-thunks, fxref): Mark with Ignore and Warn as
6878 applicable.
6879 (fhandle-exceptions): Mark with Alias and Warn.
6880 * c-opts.c (c_common_handle_option): Don't handle options marked
6881 as ignored.
6882
5de8299c
JM
68832010-09-02 Joseph Myers <joseph@codesourcery.com>
6884
6885 * c.opt (Wcomments, Werror-implicit-function-declaration,
6886 ftemplate-depth-, std=c89, std=c9x, std=gnu89, std=gnu9x,
6887 std=iso9899:1990, std=iso9899:1999, std=iso9899:199x): Mark as
6888 aliases.
6889 * c-common.c (option_codes): Use OPT_Wcomment instead of
6890 OPT_Wcomments.
6891 * c-opts.c (warning_as_error_callback, c_common_handle_option):
6892 Don't handle options marked as aliases.
6893
0ceb0201
RG
68942010-08-25 Richard Guenther <rguenther@suse.de>
6895
6896 * c-common.c (c_common_get_alias_set): Remove special
6897 handling for pointers.
6898
ac47786e
NF
68992010-08-20 Nathan Froyd <froydnj@codesourcery.com>
6900
6901 * c-common.c: Use FOR_EACH_VEC_ELT.
6902 * c-gimplify.c: Likewise.
6903 * c-pragma.c: Likewise.
6904
c878765b
JM
69052010-08-16 Joseph Myers <joseph@codesourcery.com>
6906
6907 * c.opt (MDX): Change back to MD. Mark NoDriverArg instead of
6908 RejectDriver.
6909 (MMDX): Change back to MMD. Mark NoDriverArg instead of
6910 RejectDriver.
6911 * c-opts.c (c_common_handle_option): Use OPT_MD and OPT_MMD
6912 instead of OPT_MDX and OPT_MMDX.
6913
603349bf
JM
69142010-08-16 Joseph Myers <joseph@codesourcery.com>
6915
6916 * c.opt (MDX, MMDX, lang-asm): Mark RejectDriver.
6917
644fa7ac
JM
69182010-08-12 Joseph Myers <joseph@codesourcery.com>
6919
6920 * c.opt (MD, MMD): Change to MDX and MMDX.
6921 * c-opts.c (c_common_handle_option): Use OPT_MMD and OPT_MMDX.
6922
481e1176
JM
69232010-08-11 Joseph Myers <joseph@codesourcery.com>
6924
6925 * c-opts.c (c_common_handle_option): Call handle_generated_option
6926 instead of handle_option.
6927
ac8dc9f7
NF
69282010-08-08 Nathan Froyd <froydnj@codesourcery.com>
6929
6930 * c-pragma.c (add_to_renaming_pragma_list): Fix call to VEC_safe_push.
6931 (maybe_apply_renaming_pragma): Delete unneeded declarations.
6932
4f8c876d
NF
69332010-08-08 Nathan Froyd <froydnj@codesourcery.com>
6934
6935 * c-pragma.c (pending_redefinition): Declare. Declare a VEC of it.
6936 (pending_redefine_extname): Change type to a VEC.
6937 (add_to_renaming_pragma_list): Update for new type of
6938 pending_redefine_extname.
ac8dc9f7 6939 (maybe_apply_renaming_pragma): Likewise.
4f8c876d 6940
3b0c690e
AC
69412010-08-04 Arnaud Charlet <charlet@adacore.com>
6942
6943 * c-ada-spec.c (dump_ada_template): Mark underlying instance type as
6944 visited.
6945 (dump_generic_ada_node): Code clean up. Use TREE_VISITED flag to
6946 decide whether a type has already been declared/seen.
6947 Do not go to the original type.
6948 (dump_nested_types): New parameter forward.
6949 Generate forward declaration if needed and mark type as visited.
6950 (print_ada_declaration): Call dump_nested_types if not already done.
6951 Mark types as visited.
6952
1890bccc
JM
69532010-08-03 Joseph Myers <joseph@codesourcery.com>
6954
6955 * c.opt (-print-pch-checksum): Remove option.
6956 * c-opts.c (c_common_handle_option): Don't handle
6957 OPT_print_pch_checksum.
6958
5f20c657
JM
69592010-07-27 Joseph Myers <joseph@codesourcery.com>
6960
6961 * c-common.h (c_common_handle_option): Update prototype and return
6962 value type.
6963 * c-opts.c (c_common_handle_option): Update prototype and return
6964 value type. Update calls to handle_option and
6965 enable_warning_as_error.
6966
f551f80c
JJ
69672010-07-27 Jakub Jelinek <jakub@redhat.com>
6968
6969 PR c/45079
6970 * c-pretty-print.c (pp_c_expression): Handle C_MAYBE_CONST_EXPR.
6971
61ff2bdc
JM
69722010-07-27 Joseph Myers <joseph@codesourcery.com>
6973
6974 * c-common.h (c_common_missing_argument): Remove.
6975 * c-opts.c (c_common_missing_argument): Remove.
6976 * c.opt (A, D, F, I, MD, MMD, MQ, MT, U, fconstant-string-class=,
6977 idirafter, imacros, include, isysroot, isystem, iquote): Add
6978 MissingArgError.
6979 * c-objc-common.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
6980
7a9bf9a4
JM
69812010-07-27 Joseph Myers <joseph@codesourcery.com>
6982
6983 * c-common.h (c_common_option_lang_mask,
6984 c_common_initialize_diagnostics, c_common_complain_wrong_lang_p):
6985 New.
6986 (c_common_init_options): Update prototype.
6987 * c-opts.c (c_common_option_lang_mask): New.
6988 (c_common_initialize_diagnostics): Split out of
6989 c_common_init_options.
6990 (accept_all_c_family_options, c_common_complain_wrong_lang_p):
6991 New.
6992 (c_common_init_options): Update prototype. Use decoded options in
6993 search for -lang-asm.
6994
910ad8de
NF
69952010-07-15 Nathan Froyd <froydnj@codesourcery.com>
6996
6997 * c-common.c: Carefully replace TREE_CHAIN with DECL_CHAIN.
6998 * c-format.c: Likewise.
6999
718f9c0f
MLI
70002010-07-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
7001
7002 * c-common.h: Include diagnostic-core.h. Error if already
7003 included.
7004 * c-semantics.c: Do not define GCC_DIAG_STYLE here.
7005
4d451982
MLI
70062010-07-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
7007
adfac8df 7008 * c-common.c (IN_GCC_FRONTEND): Do not undef.
4d451982
MLI
7009 Do not include expr.h
7010 (vector_mode_valid_p): Move here.
7011
119fe915
SB
70122010-06-21 DJ Delorie <dj@redhat.com>
7013
7014 * c-pragma.c (handle_pragma_diagnostic): Add push/pop,
7015 allow these pragmas anywhere.
7016
70172010-06-14 Jakub Jelinek <jakub@redhat.com>
7018
7019 PR bootstrap/44509
7020 * c-cppbuiltin.c: Include gt-c-family-c-cppbuiltin.h.
7021 (lazy_hex_fp_values, lazy_hex_fp_value_count): Add GTY(()) markers.
7022 (lazy_hex_fp_value, builtin_define_with_hex_fp_value): Use
7023 ggc_strdup instead of xstrdup.
7024
70252010-06-10 Jakub Jelinek <jakub@redhat.com>
7026
7027 * c-cppbuiltin.c: Include cpp-id-data.h.
7028 (lazy_hex_fp_values, lazy_hex_fp_value_count): New variables.
7029 (lazy_hex_fp_value): New function.
7030 (builtin_define_with_hex_fp_value): Provide definitions lazily.
7031
6662d794
MLI
70322010-06-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
7033
7034 * c-gimplify.c: Do not include tree-flow.h
7035
38f8b050
JR
70362010-06-29 Joern Rennecke <joern.rennecke@embecosm.com>
7037
7038 PR other/44034
7039 * c-common.c: Rename targetm member:
7040 targetm.enum_va_list -> targetm.enum_va_list_p
7041
9589f23e
AS
70422010-06-28 Anatoly Sokolov <aesok@post.ru>
7043
7044 * c-common.c (shorten_compare): Adjust call to force_fit_type_double.
7045
3b06d379
SB
70462010-06-28 Steven Bosscher <steven@gcc.gnu.org>
7047
7048 * c-cppbuiltin.c: Do not include except.h.
7049
d166d4c3
AK
70502010-06-24 Andi Kleen <ak@linux.intel.com>
7051
9faeb493
UB
7052 * c-common.c (warn_for_omitted_condop): New.
7053 * c-common.h (warn_for_omitted_condop): Add prototype.
d166d4c3 7054
70cb8be6
JM
70552010-06-21 Joseph Myers <joseph@codesourcery.com>
7056
7057 * c.opt (lang-objc): Remove.
7058 * c-opts.c (c_common_handle_option): Don't handle OPT_lang_objc.
7059
a4c97feb
JR
70602010-06-21 Joern Rennecke <joern.rennecke@embecosm.com>
7061
7062 * c-opts.c: Include "tm_p.h".
7063
6e2f1956
JM
70642010-06-20 Joseph Myers <joseph@codesourcery.com>
7065
7066 * c-common.c (parse_optimize_options): Update call to
7067 decode_options.
7068
bc87224e
NF
70692010-06-18 Nathan Froyd <froydnj@codesourcery.com>
7070
7071 * c-common.c (record_types_used_by_current_var_decl): Adjust for
7072 new type of types_used_by_cur_var_decl.
7073
b49cf425
JR
70742010-06-17 Joern Rennecke <joern.rennecke@embecosm.com>
7075
7076 PR bootstrap/44512
7077 * c-cppbuiltin.c (builtin_define_with_hex_fp_value): Add cast
7078 for C++ standard compliance.
7079
59f9c2ed
JM
70802010-06-16 Jason Merrill <jason@redhat.com>
7081
7082 * c.opt: Add -Wnoexcept.
7083
33766b66
RG
70842010-06-16 Richard Guenther <rguenther@suse.de>
7085
7086 PR c/44555
7087 * c-common.c (c_common_truthvalue_conversion): Remove
7088 premature and wrong optimization concering ADDR_EXPRs.
7089
eff7e30c
AC
70902010-06-15 Arnaud Charlet <charlet@adacore.com>
7091
7092 * c-ada-spec.c (dump_sloc): Remove column info.
7093 (is_simple_enum): New function.
7094 (dump_generic_ada_node, print_ada_declaration): Map C enum types to Ada
7095 enum types when relevant.
7096
6312e84d
MLI
70972010-06-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
7098
9faeb493 7099 * c-common.c (conversion_warning): Warn at expression
6312e84d
MLI
7100 location.
7101
1cb42611
JM
71022010-06-10 Joseph Myers <joseph@codesourcery.com>
7103
7104 * c-opts.c (c_common_handle_option): Don't handle
7105 OPT_fshow_column.
7106
a9429e29
LB
71072010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
7108
7109 * c-pragma.c (push_alignment): Use typed GC allocation.
7110 (handle_pragma_push_options): Likewise.
7111
7112 * c-common.c (parse_optimize_options): Likewise.
7113
7114 * c-common.h (struct sorted_fields_type): Add variable_size GTY
7115 option.
7116
5498f011
JM
71172010-06-07 Joseph Myers <joseph@codesourcery.com>
7118
7119 * c-common.c (flag_preprocess_only, flag_undef, flag_no_builtin,
7120 flag_no_nonansi_builtin, flag_short_double, flag_short_wchar,
7121 flag_lax_vector_conversions, flag_ms_extensions, flag_no_asm,
7122 flag_signed_bitfields, warn_strict_null_sentinel,
7123 flag_nil_receivers, flag_zero_link, flag_replace_objc_classes,
7124 flag_gen_declaration, flag_no_gnu_keywords,
7125 flag_implement_inlines, flag_implicit_templates,
7126 flag_implicit_inline_templates, flag_optional_diags,
7127 flag_elide_constructors, flag_default_inline, flag_rtti,
7128 flag_conserve_space, flag_access_control, flag_check_new,
7129 flag_new_for_scope, flag_weak, flag_working_directory,
7130 flag_use_cxa_atexit, flag_use_cxa_get_exception_ptr,
7131 flag_enforce_eh_specs, flag_threadsafe_statics,
7132 flag_pretty_templates): Remove.
7133 * c-common.h (flag_preprocess_only, flag_nil_receivers,
7134 flag_objc_exceptions, flag_objc_sjlj_exceptions, flag_zero_link,
7135 flag_replace_objc_classes, flag_undef, flag_no_builtin,
7136 flag_no_nonansi_builtin, flag_short_double, flag_short_wchar,
7137 flag_lax_vector_conversions, flag_ms_extensions, flag_no_asm,
7138 flag_const_strings, flag_signed_bitfields, flag_gen_declaration,
7139 flag_no_gnu_keywords, flag_implement_inlines,
7140 flag_implicit_templates, flag_implicit_inline_templates,
7141 flag_optional_diags, flag_elide_constructors, flag_default_inline,
7142 flag_rtti, flag_conserve_space, flag_access_control,
7143 flag_check_new, flag_new_for_scope, flag_weak,
7144 flag_working_directory, flag_use_cxa_atexit,
7145 flag_use_cxa_get_exception_ptr, flag_enforce_eh_specs,
7146 flag_threadsafe_statics, flag_pretty_templates,
7147 warn_strict_null_sentinel): Remove.
7148 * c.opt (E, Wstrict-null-sentinel, faccess-control, fasm,
7149 fbuiltin, fcheck-new, fconserve-space, felide-constructors,
7150 fenforce-eh-specs, ffor-scope, fgnu-keywords, fimplement-inlines,
7151 fimplicit-inline-templates, fimplicit-templates,
7152 flax-vector-conversions, fms-extensions, fnil-receivers,
7153 fnonansi-builtins, fpretty-templates, freplace-objc-classes,
7154 frtti, fshort-double, fshort-enums, fshort-wchar,
7155 fsigned-bitfields, fsigned-char, fstats, fthreadsafe-statics,
7156 funsigned-bitfields, funsigned-char, fuse-cxa-atexit,
7157 fuse-cxa-get-exception-ptr, fweak, fworking-directory, fzero-link,
7158 gen-decls, undef): Use Var.
7159 (fdefault-inline, foptional-diags): Document as doing nothing.
7160 * c-opts.c (c_common_handle_option): Remove cases for options now
7161 using Var. Mark ignored options as such.
7162
39dabefd
SB
71632010-06-05 Steven Bosscher <steven@gcc.gnu.org>
7164
9faeb493 7165 * c-common.c: Moved to here from parent directory.
39dabefd
SB
7166 * c-common.def: Likewise.
7167 * c-common.h: Likewise.
7168 * c-cppbuiltin.c: Likewise.
7169 * c-dump.c: Likewise.
7170 * c-format.c: Likewise.
7171 * c-format.h : Likewise.
7172 * c-gimplify.c: Likewise.
7173 * c-lex.c: Likewise.
7174 * c-omp.c: Likewise.
7175 * c.opt: Likewise.
7176 * c-opts.c: Likewise.
7177 * c-pch.c: Likewise.
7178 * c-ppoutput.c: Likewise.
7179 * c-pragma.c: Likewise.
7180 * c-pragma.h: Likewise.
7181 * c-pretty-print.c: Likewise.
7182 * c-pretty-print.h: Likewise.
7183 * c-semantics.c: Likewise.
7184 * stub-objc.c: Likewise.
7185
7186 * c-common.c: Include gt-c-family-c-common.h.
7187 * c-pragma.c: Include gt-c-family-c-pragma.h.
7188\f
818ab71a 7189Copyright (C) 2010-2016 Free Software Foundation, Inc.
39dabefd
SB
7190
7191Copying and distribution of this file, with or without modification,
7192are permitted in any medium without royalty provided the copyright
7193notice and this notice are preserved.