Daily bump.
[gcc.git] / gcc / c-family / ChangeLog
1 2020-06-26 Marek Polacek <polacek@redhat.com>
2
3 * c-opts.c (c_common_init_options): Default to gnu++17.
4
5 2020-06-17 Jonathan Wakely <jwakely@redhat.com>
6
7 PR c/95378
8 * c-common.c (get_atomic_generic_size): Check cv-qualifiers in
9 pointer arguments.
10
11 2020-06-16 Jakub Jelinek <jakub@redhat.com>
12
13 * c-common.h (c_omp_check_loop_iv_exprs): Add an int argument.
14 * c-omp.c (struct c_omp_check_loop_iv_data): Add maybe_nonrect and
15 idx members.
16 (c_omp_is_loop_iterator): New function.
17 (c_omp_check_loop_iv_r): Use it. Add support for silent scanning
18 if outer loop iterator is present. Perform duplicate checking through
19 hash_set in the function rather than expecting caller to do that.
20 Pass NULL instead of d->ppset to walk_tree_1.
21 (c_omp_check_nonrect_loop_iv): New function.
22 (c_omp_check_loop_iv): Use it. Fill in new members, allow
23 non-rectangular loop forms, diagnose multiple associated loops with
24 the same iterator. Pass NULL instead of &pset to walk_tree_1.
25 (c_omp_check_loop_iv_exprs): Likewise.
26
27 2020-06-10 Martin Liska <mliska@suse.cz>
28
29 PR tree-optimization/92860
30 * c-attribs.c (handle_optimize_attribute):
31 Save global options and compare it after parsing of function
32 attribute.
33 * c-pragma.c (opt_stack::saved_global_options): New field.
34 (handle_pragma_push_options): Save global_options.
35 (handle_pragma_pop_options): Compare them after pop.
36
37 2020-06-09 Jakub Jelinek <jakub@redhat.com>
38
39 PR c/95580
40 * c-pretty-print.c (c_pretty_printer::unary_expression): Handle the
41 case when MEM_REF's first argument has type pointer to incomplete type.
42
43 2020-06-05 Jason Merrill <jason@redhat.com>
44
45 * c-pretty-print.c (pp_c_additive_expression): Handle negative
46 operand to POINTER_PLUS_EXPR.
47
48 2020-06-04 Martin Sebor <msebor@redhat.com>
49
50 PR middle-end/10138
51 PR middle-end/95136
52 * c-attribs.c (append_access_attrs): Handle attr_access::none.
53 (handle_access_attribute): Same.
54
55 2020-06-03 Mark Wielaard <mark@klomp.org>
56
57 * known-headers.cc (get_cp_stdlib_header_for_string_macro_name):
58 New function.
59 * known-headers.h (get_cp_stdlib_header_for_string_macro_name):
60 New function declaration.
61
62 2020-06-03 Mark Wielaard <mark@klomp.org>
63
64 * known-headers.cc (get_string_macro_hint): New function.
65 (get_stdlib_header_for_name): Use get_string_macro_hint.
66 (get_c_stdlib_header_for_string_macro_name): New function.
67 * known-headers.h (get_c_stdlib_header_for_string_macro_name):
68 New function declaration.
69
70 2020-06-03 Tobias Burnus <tobias@codesourcery.com>
71
72 * c-common.h (c_omp_predetermined_mapping): Declare.
73 * c-omp.c (c_omp_predetermined_mapping): New.
74
75 2020-05-22 Mark Wielaard <mark@klomp.org>
76
77 * known-headers.cc (get_stdlib_header_for_name): Add a new
78 stdlib_hint array for stdbool and stdint.
79
80 2020-05-22 Mark Wielaard <mark@klomp.org>
81
82 * known-headers.cc (get_stdlib_header_for_name): Return
83 "<stdbool.h>" for "bool", "true" or "false" when STDLIB_C and
84 flag_isoc99.
85
86 2020-05-20 Nathan Sidwell <nathan@acm.org>
87
88 * c-common.c (try_to_locate_new_include_insertion_point): Revert change.
89
90 * c-common.c (try_to_locate_new_include_insertion_point): Use
91 strcmp to compare filenames.
92 * c-lex.c (init_c_lex): Move declaration to initialization.
93 * c-opts.c (handle_deferred_opts): Move cpp_get_deps call into
94 deferred count loop.
95
96 2020-05-15 Jason Merrill <jason@redhat.com>
97
98 * c-opts.c (set_std_cxx20): Set flag_coroutines.
99
100 2020-05-13 Jason Merrill <jason@redhat.com>
101
102 * c.opt (std=c++20): Make c++2a the alias.
103 (std=gnu++20): Likewise.
104 * c-common.h (cxx_dialect): Change cxx2a to cxx20.
105 * c-opts.c: Adjust.
106 * c-cppbuiltin.c: Adjust.
107 * c-ubsan.c: Adjust.
108 * c-warn.c: Adjust.
109
110 2020-05-12 Eric Botcazou <ebotcazou@adacore.com>
111
112 * c-ada-spec.c (dump_ads): Output pragma Warnings ("U"); on entry.
113
114 2020-05-08 Nathan Sidwell <nathan@acm.org>
115
116 Reimplement directives only processing.
117 * c-ppoutput.c (token_streamer): Ne.
118 (directives_only_cb): New. Swallow ...
119 (print_lines_directives_only): ... this.
120 (scan_translation_unit_directives_only): Reimplment using the
121 published interface.
122
123 2020-05-07 Marek Polacek <polacek@redhat.com>
124
125 * c-format.c (badwords): Add "nonstatic".
126
127 202-05-07 Jakub Jelinek <jakub@redhat.com>
128
129 PR c/94968
130 * c-common.c (speculation_safe_value_resolve_params): Return false if
131 error_operand_p (val2).
132 (resolve_overloaded_builtin) <case BUILT_IN_SPECULATION_SAFE_VALUE_N>:
133 Remove extraneous semicolon.
134
135 2020-05-06 qing zhao <qing.zhao@oracle.com>
136
137 PR c/94230
138 * c-indentation.c (get_visual_column): Add a hint to use the new
139 -flarge-source-files option.
140
141 2020-05-05 Stefan Schulze Frielinghaus <stefansf@linux.ibm.com>
142
143 * c-attribs.c (handle_vector_size_attribute): Add attribute
144 nonnull for argument args in order to silence warning of
145 uninitialized variable usage. Since this is local to the
146 compilation unit and thus cannot be checked at call sides by the
147 compiler, added an assert statement in order to verify this.
148
149 2020-05-01 H.J. Lu <hongjiu.lu@intel.com>
150
151 PR target/93492
152 * c-attribs.c (handle_patchable_function_entry_attribute): Limit
153 value to USHRT_MAX (65535).
154
155 2020-04-29 Jakub Jelinek <jakub@redhat.com>
156
157 * c-format.c (PP_FORMAT_CHAR_TABLE): Add %{ and %}.
158
159 2020-04-27 Jakub Jelinek <jakub@redhat.com>
160
161 PR c/94755
162 * c-common.c (resolve_overloaded_builtin): Return error_mark_node for
163 fncode == BUILT_IN_NONE before initialization of first_param.
164
165 2020-04-23 Marek Polacek <polacek@redhat.com>
166
167 PR c++/94733
168 * c-attribs.c (find_tm_attribute): Use get_attribute_name instead of
169 TREE_PURPOSE.
170
171 2020-04-14 Patrick Palka <ppalka@redhat.com>
172
173 PR c++/85278
174 * c-pretty-print.c (pp_c_pointer) <case REFERENCE_TYPE>: Print a double
175 ampersand if it's an rvalue reference type.
176
177 2020-04-13 Martin Sebor <msebor@redhat.com>
178
179 PR c/92326
180 * c-pretty-print.c (c_pretty_printer::direct_abstract_declarator): Avoid
181 printing array bound for flexible array members.
182
183 2020-04-13 Iain Sandoe <iain@sandoe.co.uk>
184
185 * c-cppbuiltin.c (c_cpp_builtins): Update coroutines builtin
186 define, per n4861.
187
188 2020-04-02 Richard Biener <rguenther@suse.de>
189
190 PR c/94392
191 * c-opts.c (c_common_post_options): Enable -ffinite-loops
192 for -O2 and C++11 or newer.
193
194 2020-03-28 Patrick Palka <ppalka@redhat.com>
195
196 * c.opt: Add -fconcepts-diagnostics-depth.
197
198 2020-03-27 Martin Sebor <msebor@redhat.com>
199
200 PR c++/94346
201 * c-attribs.c (handle_copy_attribute): Avoid passing expressions
202 to decl_attributes. Make handling of different kinds of entities
203 more robust.
204
205 2020-03-27 Martin Sebor <msebor@redhat.com>
206
207 PR c++/94098
208 * c-attribs.c (handle_access_attribute): Avoid setting TYPE_ATTRIBUTES
209 here.
210
211 2020-03-23 Jakub Jelinek <jakub@redhat.com>
212
213 PR c++/91993
214 * c-warn.c (warnings_for_convert_and_check): For expr and/or
215 result being COMPOUND_EXPRs, skip to ultimate rhs.
216
217 2020-03-20 Richard Sandiford <richard.sandiford@arm.com>
218
219 PR middle-end/94072
220 * c-common.c (c_common_type_for_mode): Before using a registered
221 built-in type, check that the vectorness of the type matches
222 the vectorness of the mode.
223
224 2020-03-17 Jakub Jelinek <jakub@redhat.com>
225
226 * c-common.c (resolve_overloaded_builtin): Fix up duplicated word
227 issue in a diagnostic message.
228
229 2020-03-15 Lewis Hyatt <lhyatt@gmail.com>
230
231 * c.opt: Avoid redundancy in the help text.
232
233 2020-03-02 Marek Polacek <polacek@redhat.com>
234
235 PR c++/93958 - add missing -std=gnu++20.
236 * c.opt: Add -std=gnu++20.
237
238 2020-03-01 Martin Sebor <msebor@redhat.com>
239
240 PR c++/92721
241 * c-attribs.c (append_access_attrs): Correctly handle attribute.
242 (handle_access_attribute): Same.
243
244 2020-02-25 Jakub Jelinek <jakub@redhat.com>
245
246 PR c/93858
247 * c-pragma.c (handle_pragma_diagnostic): Add missing ? after
248 "did you mean" hint in diagnostics.
249
250 2020-02-15 Jason Merrill <jason@redhat.com>
251
252 * c.opt: Add -std=c++20.
253
254 2020-02-14 Eric Botcazou <ebotcazou@adacore.com>
255
256 * c-ada-spec.c: Include bitmap.h.
257 (dump_ada_double_name): Rename into...
258 (dump_anonymous_type_name): ...this. Always use the TYPE_UID.
259 (dump_ada_array_type): Adjust to above renaming. Robustify.
260 (dump_nested_types_1): New function copied from... Add dumped_types
261 parameter and pass it down to dump_nested_type.
262 (dump_nested_types): ...this. Remove parent parameter. Just call
263 dump_nested_types_1 on an automatic bitmap.
264 (dump_nested_type): Add dumped_types parameter.
265 <ARRAY_TYPE>: Do not dump it if already present in dumped_types.
266 Adjust recursive calls and adjust to above renaming.
267 (dump_ada_declaration): Adjust call to dump_nested_types.
268 Tidy up and adjust to above renaming.
269 (dump_ada_specs): Initialize and release bitmap obstack.
270
271 2020-02-10 Martin Sebor <msebor@redhat.com>
272
273 PR c/93640
274 * c-attribs.c (handle_access_attribute): Correct off-by-one mistakes.
275
276 2020-02-10 Jakub Jelinek <jakub@redhat.com>
277
278 PR other/93641
279 * c-format.c (check_plain): Fix up last argument of strncasecmp.
280 Remove useless extra test.
281
282 2020-02-03 Julian Brown <julian@codesourcery.com>
283 Tobias Burnus <tobias@codesourcery.com>
284
285 * c-cppbuiltin.c (c_cpp_builtins): Update _OPENACC define to 201711.
286
287 2020-01-29 Jason Merrill <jason@redhat.com>
288
289 PR c++/89357
290 * c-attribs.c (check_cxx_fundamental_alignment_constraints): Remove.
291
292 2020-01-23 Jason Merrill <jason@redhat.com>
293
294 * c-warn.c (conversion_warning): Change -Wsign-conversion handling.
295
296 2020-01-23 Martin Sebor <msebor@redhat.com>
297
298 PR c/84919
299 * c-common.c (check_function_arguments): Avoid overlap checking
300 of sprintf functions.
301
302 2020-01-22 Jason Merrill <jason@redhat.com>
303
304 PR testsuite/93391 - PR 40752 test fails with unsigned plain char.
305 PR c++/40752
306 * c-warn.c (conversion_warning): Check operands only after checking
307 the whole expression. Don't check second operand of + for sign.
308
309 2020-01-21 Jason Merrill <jason@redhat.com>
310 Manuel López-Ibáñez <manu@gcc.gnu.org>
311
312 PR c++/40752 - useless -Wconversion with short +=.
313 * c.opt (-Warith-conversion): New.
314 * c-warn.c (conversion_warning): Recurse for operands of
315 operators. Only warn about the whole expression with
316 -Warith-conversion.
317
318 2020-01-21 Jason Merrill <jason@redhat.com>
319
320 * c-common.c (unsafe_conversion_p): Don't warn, return UNSAFE_SIGN.
321 * c-warn.c (conversion_warning): Warn about UNSAFE_SIGN.
322
323 2020-01-20 Nathan Sidwell <nathan@acm.org>
324
325 PR preprocessor/80005
326 * c-cppbuiltins.c (c_cpp_builtins): Don't define __has_include{,_next}.
327
328 2020-01-18 Iain Sandoe <iain@sandoe.co.uk>
329
330 * c-common.c (co_await, co_yield, co_return): New.
331 * c-common.h (RID_CO_AWAIT, RID_CO_YIELD,
332 RID_CO_RETURN): New enumeration values.
333 (D_CXX_COROUTINES): Bit to identify coroutines are active.
334 (D_CXX_COROUTINES_FLAGS): Guard for coroutine keywords.
335 * c-cppbuiltin.c (__cpp_coroutines): New cpp define.
336 * c.opt (fcoroutines): New command-line switch.
337
338 2020-01-10 David Malcolm <dmalcolm@redhat.com>
339
340 * c-format.c (local_event_ptr_node): New.
341 (PP_FORMAT_CHAR_TABLE): Add entry for "%@".
342 (init_dynamic_diag_info): Initialize local_event_ptr_node.
343 * c-format.h (T_EVENT_PTR): New define.
344
345 2020-01-10 Martin Sebor <msebor@redhat.com>
346
347 PR c/93132
348 * c-attribs.c (append_access_attrs): Validate against the translated
349 access string rather than the human-readable representation.
350
351 2020-01-01 Jakub Jelinek <jakub@redhat.com>
352
353 Update copyright years.
354
355 2019-12-20 Eric Botcazou <ebotcazou@adacore.com>
356
357 * c-ada-spec.h (decl_sloc): Delete.
358 * c-ada-spec.c (decl_sloc): Make static.
359
360 2019-12-19 Julian Brown <julian@codesourcery.com>
361
362 * c-common.h (c_omp_map_clause_name): Add prototype.
363 * c-omp.c (c_omp_map_clause_name): New function.
364 * c-pragma.h (pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_ATTACH and
365 PRAGMA_OACC_CLAUSE_DETACH.
366
367 2019-12-19 Julian Brown <julian@codesourcery.com>
368 Maciej W. Rozycki <macro@codesourcery.com>
369 Tobias Burnus <tobias@codesourcery.com>
370 Thomas Schwinge <thomas@codesourcery.com>
371
372 * c-pragma.h (pragma_omp_clause): Add
373 PRAGMA_OACC_CLAUSE_NO_CREATE.
374
375 2019-12-17 Martin Sebor <msebor@redhat.com>
376
377 PR c++/61339
378 * c.opt (-Wmismatched-tags, -Wredundant-tags): New options.
379
380 2019-12-11 David Malcolm <dmalcolm@redhat.com>
381
382 * c-pretty-print.c (c_pretty_printer::clone): New vfunc
383 implementation.
384 * c-pretty-print.h (c_pretty_printer::clone): New vfunc decl.
385
386 2019-12-09 David Malcolm <dmalcolm@redhat.com>
387
388 * c-format.c (range_label_for_format_type_mismatch::get_text):
389 Replace label_text ctor called with true with label_text::take.
390
391 2019-12-09 David Malcolm <dmalcolm@redhat.com>
392
393 * c-format.c (selftest::test_type_mismatch_range_labels): Remove
394 initial newline from expected outputs.
395 * c-opts.c (c_diagnostic_finalizer): Add pp_newline call before
396 call to diagnostic_show_locus.
397
398 2019-12-06 Jakub Jelinek <jakub@redhat.com>
399
400 * c-cppbuiltin.c (c_cpp_builtins): Don't define __cpp_consteval for
401 now.
402
403 2019-12-05 Marek Polacek <polacek@redhat.com>
404 Jakub Jelinek <jakub@redhat.com>
405
406 PR c++/91353 - P1331R2: Allow trivial default init in constexpr contexts.
407 * c-cppbuiltin.c (c_cpp_builtins): Adjust the value of __cpp_constexpr.
408
409 2019-12-05 Marek Polacek <polacek@redhat.com>
410
411 PR c++/92271 - make __is_same alias for __is_same_as.
412 * c-common.c: Add __is_same, an alias for __is_same_as.
413
414 2019-12-03 Marek Polacek <polacek@redhat.com>
415
416 PR c++/91363 - P0960R3: Parenthesized initialization of aggregates.
417 * c-cppbuiltin.c (c_cpp_builtins): Predefine
418 __cpp_aggregate_paren_init=201902 for -std=c++2a.
419
420 2019-11-30 Jan Hubicka <hubicka@ucw.cz>
421
422 * c-attribs.c (handle_symver_attribute): New function
423 (c_common_attributes): Add symver.
424
425 2019-11-30 Richard Sandiford <richard.sandiford@arm.com>
426
427 * c-common.c (pointer_int_sum): Use verify_type_context to check
428 whether the target allows pointer arithmetic for the types involved.
429 (c_sizeof_or_alignof_type, c_alignof_expr): Use verify_type_context
430 to check whether the target allows sizeof and alignof operations
431 for the types involved.
432
433 2019-11-27 Jason Merrill <jason@redhat.com>
434
435 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_deduction_guides.
436
437 2019-11-26 Jakub Jelinek <jakub@redhat.com>
438
439 PR c++/61414
440 * c-attribs.c (handle_mode_attribute): Add mode attribute to
441 ENUMERAL_TYPEs.
442
443 2019-11-25 Joseph Myers <joseph@codesourcery.com>
444
445 PR c/91985
446 * c-common.c (c_common_type_for_mode): Handle decimal
447 floating-point types being NULL_TREE.
448 * c-format.c (get_format_for_type_1): Handle specified types being
449 NULL_TREE.
450 * c-lex.c (interpret_float): Give an error for decimal
451 floating-point constants when decimal floating-point not
452 supported.
453
454 2019-11-23 Jakub Jelinek <jakub@redhat.com>
455
456 PR middle-end/83859
457 * c-attribs.c (append_access_attrs): Avoid buffer overflow. Avoid
458 memory leak. Use XNEWVEC macro. Use auto_diagnostic_group to
459 group warning with inform together.
460 (handle_access_attribute): Formatting fix.
461
462 2019-11-22 Jakub Jelinek <jakub@redhat.com>
463
464 PR c/90677
465 * c-common.h (identifier_global_tag): Declare.
466 * c-format.c (get_pointer_to_named_type): Renamed to ...
467 (get_named_type): ... this. Use identifier_global_tag instead of
468 identifier_global_value, handle the return value being a TYPE_P.
469 (init_dynamic_diag_info): Adjust get_pointer_to_named_type callers
470 to call get_named_type instead. Formatting fixes.
471
472 Implement P1902R1, Missing feature-test macros 2017-2019.
473 * c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_init_captures
474 and __cpp_generic_lambdas for -std=c++2a. Define
475 __cpp_designated_initializers, __cpp_constexpr_in_decltype and
476 __cpp_consteval for -std=c++2a. Remove a FIXME comment about
477 __cpp_concepts for -std=c++2a.
478
479 2019-11-22 Martin Sebor <msebor@redhat.com>
480
481 PR middle-end/83859
482 * c-attribs.c (handle_access_attribute): New function.
483 (c_common_attribute_table): Add new attribute.
484 (get_argument_type): New function.
485 (append_access_attrs): New function.
486 (get_nonnull_operand): Rename...
487 (get_attribute_operand): ...to this.
488 * c-common.c (get_nonnull_operand): Rename...
489 (get_attribute_operand): ...to this.
490
491 2019-11-21 Joseph Myers <joseph@codesourcery.com>
492
493 * c-attribs.c (handle_fallthrough_attribute): Use pedwarn instead
494 of warning.
495
496 2019-11-19 Joseph Myers <joseph@codesourcery.com>
497
498 * c-common.c (attribute_fallthrough_p): In C, use pedwarn not
499 warning for standard attributes mixed with fallthrough attributes.
500
501 2019-11-15 Joseph Myers <joseph@codesourcery.com>
502
503 * c-attribs.c (handle_fallthrough_attribute): Remove static.
504 * c-common.h (handle_fallthrough_attribute): Declare.
505
506 2019-11-15 Joseph Myers <joseph@codesourcery.com>
507
508 * c-attribs.c (handle_deprecated_attribute): Remove static.
509 * c-common.h (handle_deprecated_attribute): Declare.
510
511 2019-11-14 Joseph Myers <joseph@codesourcery.com>
512
513 * c-lex.c (lex_charconst): Make CPP_UTF8CHAR constants unsigned
514 char for C.
515
516 2019-11-14 Jakub Jelinek <jakub@redhat.com>
517
518 * c-omp.c (c_omp_check_context_selector): Add nvidia to the list of
519 valid vendors.
520
521 * c-omp.c (c_omp_check_context_selector): Handle name lists
522 containing string literals. Don't diagnose atomic_default_mem_order
523 with multiple props.
524
525 2019-11-13 Joseph Myers <joseph@codesourcery.com>
526
527 * c-cppbuiltin.c (builtin_define_float_constants): Also define
528 NORM_MAX constants. Update call to get_max_float.
529 (LAZY_HEX_FP_VALUES_CNT): Update value to include NORM_MAX
530 constants.
531
532 2019-11-13 Eric Botcazou <ebotcazou@adacore.com>
533
534 * c-ada-spec.c (get_underlying_decl): Do not look through typedefs.
535 (dump_forward_type): Do not generate a declaration for function types.
536 (dump_nested_type) <ARRAY_TYPE>: Do not generate a nested declaration
537 of the component type if it is declared in another file.
538
539 2019-11-12 Martin Liska <mliska@suse.cz>
540
541 * c-opts.c (c_common_post_options):
542 Use SET_OPTION_IF_UNSET.
543
544 2019-11-12 Maciej W. Rozycki <macro@codesourcery.com>
545 Frederik Harwath <frederik@codesourcery.com>
546
547 gcc/c-family/
548 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_SERIAL enumeration
549 constant.
550 * c-pragma.c (oacc_pragmas): Add "serial" entry.
551
552 2019-11-08 Richard Sandiford <richard.sandiford@arm.com>
553
554 * c-common.h (gnu_vector_type_p): New function.
555 * c-common.c (c_build_vec_perm_expr): Require __builtin_shuffle
556 vectors to satisfy gnu_vector_type_p.
557 (c_build_vec_convert): Likewise __builtin_convertvector.
558 (convert_vector_to_array_for_subscript): Likewise when applying
559 implicit vector to array conversion.
560 (scalar_to_vector): Likewise when converting vector-scalar
561 operations to vector-vector operations.
562
563 2019-11-08 Joseph Myers <joseph@codesourcery.com>
564
565 * c.opt (Wold-style-definition): Initialize to -1.
566 * c-opts.c (c_common_post_options): Set warn_old_style_definition
567 to flag_isoc2x if not set explicitly.
568
569 2019-11-07 Joseph Myers <joseph@codesourcery.com>
570
571 * c-attribs.c (parse_tm_stmt_attr): Handle scoped attributes.
572
573 2019-11-05 Jason Merrill <jason@redhat.com>
574
575 * c-opts.c (c_common_post_options): -fconcepts-ts implies
576 -fconcepts.
577
578 2019-11-04 Kamlesh Kumar <kamleshbhalui@gmail.com>
579
580 * c-opts.c (c_common_post_options): Update
581 latest_abi_version.
582
583 2019-11-02 Jakub Jelinek <jakub@redhat.com>
584
585 * c-common.h (c_omp_get_context_selector): Remove.
586 * c-omp.c (c_omp_get_context_selector): Moved to omp-general.c
587 and renamed to omp_get_context_selector.
588
589 * c-omp.c (c_omp_mark_declare_variant): Use
590 omp_context_selector_set_compare.
591
592 PR c++/88335 - Implement P1073R3: Immediate functions
593 * c-common.h (enum rid): Add RID_CONSTEVAL.
594 * c-common.c (c_common_reswords): Add consteval.
595
596 2019-11-01 Martin Sebor <msebor@redhat.com>
597
598 PR middle-end/91679
599 PR middle-end/91647
600 PR middle-end/91463
601 PR middle-end/92312
602 * c-pretty-print.c (direct_abstract_declarator): Print
603 bound in zero-length arrays.
604 * c.opt (-Wzero-length-bounds): New option.
605
606 2019-10-30 Nathan Sidwell <nathan@acm.org>
607
608 * c-cppbuiltin.c (c_cpp_builtins): Add 'L' suffix to feature
609 macros.
610
611 2019-10-28 Martin Sebor <msebor@redhat.com>
612
613 PR c/66970
614 * c-common.c (c_common_nodes_and_builtins): Call c_define_builtins
615 even when only preprocessing.
616 * c-common.h (names_builtin_p): Declare new function.
617 * c-lex.c (init_c_lex): Set has_builtin.
618 (c_common_has_builtin): Define a new function.
619 * c-ppoutput.c (init_pp_output): Set has_builtin.
620
621 2019-10-24 Jakub Jelinek <jakub@redhat.com>
622
623 * c-common.h (c_omp_context_selector_matches): Remove.
624 * c-omp.c (c_omp_context_selector_matches): Remove.
625 * c-attribs.c (c_common_attribute_table): Add
626 "omp declare target {host,nohost,block}" attributes.
627
628 2019-10-17 JeanHeyd Meneide <phdofthehouse@gmail.com>
629
630 * c-lex.c (c_common_has_attribute): Update nodiscard value.
631
632 2019-10-14 Richard Sandiford <richard.sandiford@arm.com>
633
634 * c-common.h (user_facing_original_type_p): Declare.
635 * c-common.c: Include c-spellcheck.h.
636 (user_facing_original_type_p): New function.
637
638 2019-10-12 Jakub Jelinek <jakub@redhat.com>
639
640 * c-common.h (c_omp_mark_declare_variant,
641 c_omp_context_selector_matches): Declare.
642 * c-omp.c: Include attribs.h, gimplify.h, cgraph.h, symbol-summary.h
643 and hsa-common.h.
644 (c_omp_get_context_selector): Support second argument NULL.
645 (c_omp_mark_declare_variant, c_omp_context_selector_matches): New
646 functions.
647 * c-attribs.c (c_common_attribute_table): Remove "omp declare variant"
648 attribute, add "omp declare variant base" and
649 "omp declare variant variant" attributes.
650
651 2019-10-11 Joseph Myers <joseph@codesourcery.com>
652
653 * c.opt (Wc11-c2x-compat): Add CPP(cpp_warn_c11_c2x_compat)
654 CppReason(CPP_W_C11_C2X_COMPAT).
655
656 2019-10-11 Joseph Myers <joseph@codesourcery.com>
657
658 * c-common.c (c_common_reswords): Do not use D_EXT for _Decimal32,
659 _Decimal64 and _Decimal128.
660
661 2019-10-10 Joseph Myers <joseph@codesourcery.com>
662
663 * c-cppbuiltin.c (c_cpp_builtins): Do not define macros for DFP
664 types if DFP not supported.
665
666 2019-10-10 Jakub Jelinek <jakub@redhat.com>
667
668 * c-common.h (c_omp_check_context_selector,
669 c_omp_get_context_selector): Declare.
670 * c-omp.c (c_omp_declare_simd_clauses_to_numbers): Fix spelling
671 in diagnostic message.
672 (c_omp_check_context_selector, c_omp_get_context_selector): New
673 functions.
674 * c-attribs.c (c_common_attribute_table): Add "omp declare variant"
675 attribute.
676 (handle_omp_declare_variant_attribute): New function.
677
678 2019-10-09 Martin Sebor <msebor@redhat.com>
679
680 PR tree-optimization/90879
681 * c.opt (-Wstring-compare): New option.
682
683 2019-10-08 Andrew Sutton <asutton@lock3software.com>
684 Jason Merrill <jason@redhat.com>
685
686 Update the concepts implementation to conform to the C++20
687 specification, improve compile times, and generally clean up
688 the implementation.
689
690 * c-cppbuiltin.c (c_cpp_builtins): Use new feature test values for
691 concepts when -std=c++2a. Bump __cpp_concepts to 201907.
692 * c.opt: Add -Wconcepts-ts.
693 * c-opts.c (c_common_post_options): Warn when -fconcepts is used
694 with -std=c++2a. Disable warning for -fconcepts in C++20 mode.
695 (set_std_cxx2a): Enable concepts by default.
696
697 2019-10-08 Joseph Myers <joseph@codesourcery.com>
698
699 * c-opts.c (c_common_post_options): Set
700 -fno-fp-int-builtin-inexact for C2X.
701
702 2019-10-05 Jakub Jelinek <jakub@redhat.com>
703
704 PR c++/91369 - Implement P0784R7: constexpr new
705 * c-cppbuiltin.c (c_cpp_builtins): Predefine
706 __cpp_constexpr_dynamic_alloc=201907 for -std=c++2a.
707
708 2019-10-04 Joseph Myers <joseph@codesourcery.com>
709
710 PR c/82752
711 * c-format.c (C_STD_VER): Handle C2x.
712 (C_STD_NAME): Likewise.
713 (strftime_flag_specs): Add 'O' modifier with 'p' flag.
714 (time_char_table): Use separate entry for 'B' and 'b', with 'O'
715 modifier allowed and 'p' flag.
716 * c-format.h (enum format_std_version): Add STD_C2X.
717 (struct format_char_info): Mention 'p' in comment on flags2.
718
719 2019-10-01 David Malcolm <dmalcolm@redhat.com>
720
721 * c-opts.c (c_diagnostic_finalizer): Temporarily clear prefix when
722 calling diagnostic_show_locus, rather than destroying it afterwards.
723
724 2019-10-01 Jakub Jelinek <jakub@redhat.com>
725
726 PR c++/91925
727 * c-warn.c (check_alignment_of_packed_member): Ignore FIELD_DECLs
728 with NULL DECL_FIELD_OFFSET.
729
730 2019-10-01 Richard Sandiford <richard.sandiford@arm.com>
731
732 * c-pretty-print.c (pp_c_specifier_qualifier_list): If a vector type
733 has a type name, use it in preference to the __vector syntax.
734
735 2019-09-30 Richard Sandiford <richard.sandiford@arm.com>
736
737 * c-pretty-print.c (pp_c_parameter_type_list): Avoid printing
738 two spaces between a comma and "...".
739
740 2019-09-27 Jakub Jelinek <jakub@redhat.com>
741
742 PR c++/88203
743 * c-common.h (c_omp_predefined_variable): Declare.
744 * c-omp.c (c_omp_predefined_variable): New function.
745 (c_omp_predetermined_sharing): Return OMP_CLAUSE_DEFAULT_SHARED
746 for predefined variables.
747
748 2019-09-27 Richard Sandiford <richard.sandiford@arm.com>
749
750 * c-common.h (build_function_call_vec): Take the original
751 function decl as an optional final parameter.
752 (check_builtin_function_arguments): Take the original function decl.
753 * c-common.c (check_builtin_function_arguments): Likewise.
754 Handle all built-in functions, not just BUILT_IN_NORMAL ones.
755 Use targetm.check_builtin_call to check BUILT_IN_MD functions.
756
757 2019-09-15 Jason Merrill <jason@redhat.com>
758
759 * c-warn.c (warn_logical_operator): Strip location wrappers. Don't
760 fold_for_warn in "|| mask" warning.
761
762 2019-09-10 Martin Liska <mliska@suse.cz>
763
764 * c.opt: Use newly added WarnRemoved.
765
766 2019-09-09 Martin Liska <mliska@suse.cz>
767
768 * c.opt: Update comment of removed
769 options that are preserved only for backward
770 compatibility.
771
772 2019-09-06 Martin Liska <mliska@suse.cz>
773
774 PR c++/91125
775 * c-common.c: Remove definition of flag_use_repository.
776 * c-common.h: Likewise.
777 * c-opts.c (c_common_handle_option):
778 Do not handle OPT_frepo option.
779 * c.opt: Mark the option with Deprecated.
780
781 2019-09-04 Marek Polacek <polacek@redhat.com>
782
783 * c.opt (fdeduce-init-list): Ignored.
784
785 2019-09-04 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
786
787 PR c/78736
788 * c.opt (Wenum-conversion): New option.
789
790 2019-09-03 Jozef Lawrynowicz <jozef.l@mittosystems.com>
791
792 * c-attribs.c (handle_section_attribute): Call the
793 handle_generic_attribute target hook after performing target
794 independent processing.
795 (handle_noinit_attribute): Likewise.
796
797 2019-09-03 Ian Lance Taylor <iant@golang.org>
798
799 * c-cppbuiltin.c (builtin_define_with_hex_fp_value): Always expand
800 when using -fgo-dump-spec.
801
802 2019-09-02 Martin Liska <mliska@suse.cz>
803
804 PR c++/91155
805 * c-common.c (fname_as_string): Use cxx_printable_name for
806 __PRETTY_FUNCTION__ same as was used before r265711.
807
808 2019-08-28 Marek Polacek <polacek@redhat.com>
809
810 Implement P1152R4: Deprecating some uses of volatile.
811 PR c++/91361
812 * c-opts.c (c_common_post_options): Enable -Wvolatile by
813 default for C++2a, unless -Wno-deprecated.
814 * c.opt (Wvolatile): New warning.
815
816 2019-08-28 Marek Polacek <polacek@redhat.com>
817
818 PR c++/91360 - Implement C++20 P1143R2: constinit.
819 * c-common.c (c_common_reswords): Add constinit and __constinit.
820 (keyword_is_decl_specifier): Handle RID_CONSTINIT.
821 * c-common.h (enum rid): Add RID_CONSTINIT, RID_FIRST_CXX20, and
822 RID_LAST_CXX20.
823 (D_CXX20): Define.
824 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_constinit.
825 * c-format.c (cxx_keywords): Add "constinit".
826 * c.opt (Wc++2a-compat, Wc++20-compat): New options.
827
828 2019-08-27 Jakub Jelinek <jakub@redhat.com>
829
830 PR c++/91415
831 * c-common.c (verify_tree): For LSHIFT_EXPR, RSHIFT_EXPR,
832 COMPONENT_REF and ARRAY_REF in cxx_dialect >= cxx17 mode handle it
833 like COMPOUND_EXPR rather than normal expression.
834
835 2019-08-23 Iain Sandoe <iain@sandoe.co.uk>
836
837 PR pch/61250
838 * c-lex.c (c_lex_with_flags): Don't call
839 c_common_no_more_pch () from here.
840
841 2019-08-23 Jakub Jelinek <jakub@redhat.com>
842
843 PR middle-end/91283
844 * c-common.c (c_ts18661_flt_eval_method): Use flag_excess_precision
845 instead of flag_excess_precision_cmdline.
846 * c-cppbuiltin.c (c_cpp_flt_eval_method_iec_559): Likewise.
847 * c-opts.c (c_common_post_options): Likewise.
848
849 2019-08-22 Martin Sebor <msebor@redhat.com>
850
851 PR middle-end/91490
852 * c-common.c (braced_list_to_string): Add argument and overload.
853 Handle flexible length arrays and unions.
854
855 2019-08-21 Eric Botcazou <ebotcazou@adacore.com>
856
857 * c-ada-spec.c (dump_ada_function_declaration): Be prepared for broken
858 function declarations where arguments are missing. Rename variables.
859
860 2019-08-15 Richard Biener <rguenther@suse.de>
861
862 * c-common.c (c_stddef_cpp_builtins): When the GIMPLE FE is
863 enabled, define __SIZETYPE__.
864
865 2019-08-14 Christophe Lyon <christophe.lyon@linaro.org>
866
867 * c-attribs.c (c_common_attribute_table): Add "noinit" entry. Add
868 exclusion with "section" attribute.
869 (attr_noinit_exclusions): New table.
870 (handle_noinit_attribute): New function.
871
872 2019-08-13 Richard Sandiford <richard.sandiford@arm.com>
873
874 PR middle-end/91421
875 * c-common.c (resolve_overloaded_builtin): Use
876 copy_decl_built_in_function.
877
878 2019-08-13 Martin Sebor <msebor@redhat.com>
879
880 PR c/80619
881 * c-format.c (printf_length_specs): Set FMT_LEN_w for "w".
882 (asm_fprintf_length_spec): Same.
883 * c-format.h (format_lengths): Add FMT_LEN_w.
884
885 2019-08-10 Jakub Jelinek <jakub@redhat.com>
886
887 * c-pragma.h (enum pragma_omp_clause): Add
888 PRAGMA_OMP_CLAUSE_DEVICE_TYPE.
889
890 2019-08-07 Jakub Jelinek <jakub@redhat.com>
891
892 * c-pragma.h (enum pragma_omp_clause): Add
893 PRAGMA_OMP_CLAUSE_USE_DEVICE_ADDR. Set PRAGMA_OACC_CLAUSE_USE_DEVICE
894 equal to PRAGMA_OMP_CLAUSE_USE_DEVICE_PTR instead of being a separate
895 enumeration value.
896
897 2019-08-05 Marek Polacek <polacek@redhat.com>
898
899 PR c++/91338 - Implement P1161R3: Deprecate a[b,c].
900 * c-opts.c (c_common_post_options): Enable -Wcomma-subscript by
901 default for C++2a, unless -Wno-deprecated.
902 * c.opt (Wcomma-subscript): New warning.
903
904 2019-07-20 Jakub Jelinek <jakub@redhat.com>
905
906 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_LOOP.
907 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_BIND.
908 * c-pragma.c (omp_pragmas_simd): Add PRAGMA_OMP_LOOP entry.
909 * c-common.h (enum c_omp_clause_split): Add C_OMP_CLAUSE_SPLIT_LOOP.
910 * c-omp.c (c_omp_split_clauses): Add support for 4 new combined
911 constructs with the loop construct.
912
913 2019-07-13 Jakub Jelinek <jakub@redhat.com>
914
915 PR c/91149
916 * c-omp.c (c_omp_split_clauses): Fix a pasto in
917 OMP_CLAUSE_REDUCTION_TASK handling.
918
919 2019-07-12 Jakub Jelinek <jakub@redhat.com>
920
921 * c-pragma.h (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_ORDER.
922 * c-omp.c (c_omp_split_clauses): Handle splitting of OMP_CLAUSE_ORDER.
923
924 2019-07-09 Martin Sebor <msebor@redhat.com>
925
926 PR c++/61339
927 * c-opts.c (handle_deferred_opts): Change class-key of PODs to struct
928 and others to class.
929 * c-pretty-print.h: Same.
930
931 2019-07-09 Martin Sebor <msebor@redhat.com>
932
933 PR c++/61339
934 * c-format.c (check_argument_type): Change class-key from class to
935 struct and vice versa to match convention and avoid -Wclass-is-pod
936 and -Wstruct-no-pod.
937 * c-pretty-print.h: Same.
938
939 2019-07-03 Martin Liska <mliska@suse.cz>
940
941 * c-common.c (try_to_locate_new_include_insertion_point): Remove
942 dead assignemts.
943
944 2019-07-03 Jakub Jelinek <jakub@redhat.com>
945
946 * c-omp.c (c_omp_split_clauses): Put OMP_CLAUSE_REDUCTION_INSCAN
947 clauses on OMP_FOR rather than OMP_PARALLEL when OMP_FOR is combined
948 with OMP_PARALLEL.
949
950 2019-07-02 qing zhao <qing.zhao@oracle.com>
951
952 PR preprocessor/90581
953 * c-opts.c (c_common_handle_option): Handle -fmax-include-depth.
954 * c.opt: Add new option -fmax-include-depth.
955
956 2019-06-26 Jason Merrill <jason@redhat.com>
957
958 PR c++/55442 - memory-hog with highly recursive constexpr.
959 * c.opt (fconstexpr-loop-limit): New.
960
961 2019-06-25 Jakub Jelinek <jakub@redhat.com>
962
963 PR sanitizer/90954
964 * c-omp.c (c_finish_omp_atomic): Allow tree_invariant_p in addition
965 to SAVE_EXPR in first operand of a COMPOUND_EXPR.
966
967 2019-06-25 Jozef Lawrynowicz <jozef.l@mittosystems.com>
968
969 * c-common.c (c_common_nodes_and_builtins): Define
970 alternate "__intN__" name for "__intN" types.
971
972 2019-06-24 Jan Hubicka <jh@suse.cz>
973
974 * c-common.c (braced_lists_to_strings): Check that
975 type is array or integer prior checking string flag.
976
977 2019-06-21 Matthew Beliveau <mbelivea@redhat.com>
978
979 PR c++/90875 - added -Wswitch-outside-range option
980 * c.opt (Wswitch-outside-range): Added new option.
981 * c-warn.c (c_do_switch_warnings): Use OPT_Wswitch-outside-range.
982
983 2019-06-21 Marek Polacek <polacek@redhat.com>
984
985 PR c++/90953 - ICE with -Wmissing-format-attribute.
986 * c-common.c (check_function_arguments_recurse): Use
987 get_attribute_name.
988 (check_missing_format_attribute): Likewise.
989
990 2019-06-19 Marek Polacek <polacek@redhat.com>
991
992 PR c++/60364 - noreturn after first decl not diagnosed.
993 * c-attribs.c (handle_noreturn_attribute): No longer static.
994 * c-common.h (handle_noreturn_attribute, attr_noreturn_exclusions):
995 Declare.
996 * c-format.c (check_function_format): Use get_attribute_name.
997
998 2019-06-19 Martin Sebor <msebor@redhat.com>
999
1000 PR translation/90156
1001 * c-format.c (function_format_info::format_type): Adjust type.
1002 (function_format_info::is_raw): New member.
1003 (decode_format_type): Adjust signature. Handle "raw" diag attributes.
1004 (decode_format_attr): Adjust call to decode_format_type.
1005 Avoid a redundant call to convert_format_name_to_system_name.
1006 Avoid abbreviating the word "arguments" in a diagnostic.
1007 (format_warning_substr): New function.
1008 (avoid_dollar_number): Quote dollar sign in a diagnostic.
1009 (finish_dollar_format_checking): Same.
1010 (check_format_info): Same.
1011 (struct baltoks_t): New.
1012 (c_opers, c_keywords, cxx_keywords, badwords, contrs): New arrays.
1013 (maybe_diag_unbalanced_tokens, check_tokens, check_plain): New
1014 functions.
1015 (check_format_info_main): Call check_plain. Use baltoks_t. Call
1016 maybe_diag_unbalanced_tokens.
1017 (handle_format_attribute): Spell out the word "arguments" in
1018 a diagnostic.
1019
1020 2019-06-11 Matthew Beliveau <mbelivea@redhat.com>
1021
1022 PR c++/90449 - add -Winaccessible-base option.
1023 * c.opt (Winaccessible-base): New option.
1024
1025 2019-06-10 Jakub Jelinek <jakub@redhat.com>
1026
1027 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_SCAN.
1028 * c-pragma.c (omp_pragmas_simd): Add #pragma omp scan.
1029 * c-omp.c (c_omp_split_clauses): Diagnose inscan reductions on
1030 combined/composite constructs where it is not allowed. Copy over
1031 OMP_CLAUSE_REDUCTION_INSCAN.
1032
1033 2019-06-05 Martin Sebor <msebor@redhat.com>
1034
1035 * c-attribs.c (handle_mode_attribute): Adjust quoting and hyphenation.
1036 (handle_alias_ifunc_attribute): Same.
1037 (handle_copy_attribute): Same.
1038 (handle_weakref_attribute): Same.
1039 (handle_nonnull_attribute): Same.
1040 * c-warn.c (warn_for_sign_compare): Same.
1041 (warn_for_restrict): Same.
1042 * c.opt: Same.
1043
1044 2019-06-05 Martin Sebor <msebor@redhat.com>
1045
1046 * c-pragma.c (handle_pragma_weak): Adjust quoting in a diagnostic.
1047 * c.opt (-Wformat-diag): Remove a spurious period.
1048
1049 2019-05-29 Jakub Jelinek <jakub@redhat.com>
1050
1051 PR c/90628
1052 * c-common.c (check_builtin_function_arguments)
1053 <case BUILTIN_*_OVERFLOW>: Diagnose pointer to const qualified integer
1054 as last argument.
1055
1056 2019-05-23 Eric Botcazou <ebotcazou@adacore.com>
1057
1058 * c-ada-spec.c (compare_node): Compare the DECL_UIDs as a last resort.
1059
1060 2019-05-22 Martin Liska <mliska@suse.cz>
1061
1062 PR lto/90500
1063 * c-attribs.c (handle_copy_attribute): Do not copy
1064 target_clones attribute.
1065
1066 2019-05-21 Eric Botcazou <ebotcazou@adacore.com>
1067
1068 * c-ada-spec.h (enum cpp_operation): Add IS_ASSIGNMENT_OPERATOR.
1069 * c-ada-spec.c (print_assignment_operator): New function.
1070 (dump_ada_declaration) <FUNCTION_DECL>: Call it do dump explicit copy
1071 assignment operators declared as methods and filter out the others.
1072
1073 2019-05-17 Thomas Schwinge <thomas@codesourcery.com>
1074
1075 PR c/89433
1076 * c-attribs.c (c_common_attribute_table): Set min_len to -1 for
1077 "omp declare target".
1078
1079 2019-05-16 Martin Sebor <msebor@redhat.com>
1080
1081 * c-attribs.c (handle_no_sanitize_attribute): Quote identifiers,
1082 keywords, operators, and types in diagnostics.
1083 (handle_scalar_storage_order_attribute): Same.
1084 (handle_mode_attribute): Same.
1085 (handle_visibility_attribute): Same.
1086 (handle_assume_aligned_attribute): Same.
1087 (handle_no_split_stack_attribute): Same.
1088 * c-common.c (shorten_compare): Same.
1089 (c_common_truthvalue_conversion): Same.
1090 (cb_get_source_date_epoch): Same.
1091 * c-lex.c (cb_def_pragma): Quote keywords, operators, and types
1092 in diagnostics.
1093 (interpret_float): Same.
1094 * c-omp.c (c_finish_omp_for): Same.
1095 * c-opts.c (c_common_post_options): Same.
1096 * c-pch.c (c_common_pch_pragma): Same.
1097 * c-pragma.c (pop_alignment): Same.
1098 (handle_pragma_pack): Same.
1099 (apply_pragma_weak): Same.
1100 (handle_pragma_weak): Same.
1101 (handle_pragma_scalar_storage_order): Same.
1102 (handle_pragma_redefine_extname): Same.
1103 (add_to_renaming_pragma_list): Same.
1104 (maybe_apply_renaming_pragma): Same.
1105 (push_visibility): Same.
1106 (handle_pragma_visibility): Same.
1107 (handle_pragma_optimize): Same.
1108 (handle_pragma_message): Same.
1109 * c-warn.c (warn_for_omitted_condop): Same.
1110 (lvalue_error): Same.
1111
1112 2019-05-15 Richard Biener <rguenther@suse.de>
1113
1114 PR c/90474
1115 * c-common.c (c_common_mark_addressable_vec): Also mark
1116 a COMPOUND_LITERAL_EXPR_DECL addressable similar to
1117 c_mark_addressable.
1118
1119 2019-05-06 Nathan Sidwell <nathan@acm.org>
1120
1121 * c-opts.c (handle_defered_opts): Rename struct deps to struc mkdeps.
1122
1123 2019-04-30 Nathan Sidwell <nathan@acm.org>
1124
1125 * c-common.c (c_common_init_ts): Use MARK_TS_EXP. Mark SIZEOF_EXPR.
1126
1127 2019-04-30 Martin Liska <mliska@suse.cz>
1128
1129 * c-pragma.c (handle_pragma_diagnostic): Provide hints
1130 for unknown options.
1131
1132 2019-04-26 Richard Sandiford <richard.sandiford@arm.com>
1133
1134 * c-warn.c (strict_aliasing_warning): Apply COMPLETE_TYPE_P to
1135 the pointer target rather than the pointer itself.
1136
1137 2019-04-19 Jakub Jelinek <jakub@redhat.com>
1138
1139 PR c/89888
1140 * c-common.h (c_add_case_label): Remove orig_type and outside_range_p
1141 arguments.
1142 (c_do_switch_warnings): Remove outside_range_p argument.
1143 * c-common.c (check_case_bounds): Removed.
1144 (c_add_case_label): Remove orig_type and outside_range_p arguments.
1145 Don't call check_case_bounds. Fold low_value as well as high_value.
1146 * c-warn.c (c_do_switch_warnings): Remove outside_range_p argument.
1147 Check for case labels outside of range of original type here and
1148 adjust them.
1149
1150 2019-04-12 Jakub Jelinek <jakub@redhat.com>
1151
1152 PR translation/90041
1153 * c.opt (-fhandle-exceptions): Use %< and %> around option names
1154 in the Warn diagnostics.
1155
1156 PR c/89946
1157 * c-attribs.c (handle_patchable_function_entry_attribute): Add
1158 function comment. Warn if arguments of the attribute are not positive
1159 integer constants.
1160
1161 2019-04-09 Eric Botcazou <ebotcazou@adacore.com>
1162
1163 * c-ada-spec.c (print_destructor): Deal with deleting destructors.
1164 (dump_ada_declaration) <FUNCTION_DECL>: Likewise.
1165
1166 2019-04-07 Eric Botcazou <ebotcazou@adacore.com>
1167
1168 * c-ada-spec.c (is_float128): New predicate extracted from...
1169 (dump_ada_node) <COMPLEX_TYPE>: Use it to recognize __cfloat128.
1170 <REAL_TYPE>: ...here. Call it.
1171
1172 2019-04-05 David Malcolm <dmalcolm@redhat.com>
1173
1174 PR c/89985
1175 * c-warn.c (check_address_or_pointer_of_packed_member): Add
1176 auto_diagnostic_group. Guard inform calls by result of
1177 warning_at call.
1178
1179 2019-04-05 Marek Polacek <polacek@redhat.com>
1180
1181 PR c++/89973 - -Waddress-of-packed-member ICE with invalid conversion.
1182 * c-warn.c (check_address_or_pointer_of_packed_member): Check the type
1183 of RHS.
1184
1185 2019-04-03 Jason Merrill <jason@redhat.com>
1186
1187 PR c++/86586 - -fcompare-debug=-Wsign-compare.
1188 * c-warn.c (warn_for_sign_compare): Call fold_for_warn.
1189
1190 2019-04-01 Martin Sebor <msebor@redhat.com>
1191
1192 PR c/89685
1193 * c-attribs.c (handle_copy_attribute): Handle references and
1194 non-constant expressions.
1195
1196 2019-03-22 Jakub Jelinek <jakub@redhat.com>
1197
1198 PR c++/87481
1199 * c.opt (-fconstexpr-ops-limit=): New option.
1200
1201 2019-03-21 Jakub Jelinek <jakub@redhat.com>
1202
1203 * c-common.c (per_file_includes_t): Use false as Lazy in hash_set
1204 template param.
1205
1206 2019-03-19 Martin Sebor <msebor@redhat.com>
1207
1208 PR tree-optimization/89688
1209 * c-common.c (braced_list_to_string): Make static.
1210 (braced_lists_to_strings): Define new function.
1211 * c-common.h (braced_list_to_string): Remove.
1212 (braced_lists_to_strings): Declare.
1213
1214 2019-03-12 Martin Liska <mliska@suse.cz>
1215
1216 * c-opts.c (c_common_handle_option): Wrap option with %< and %>.
1217
1218 2019-03-11 Martin Liska <mliska@suse.cz>
1219
1220 * c-opts.c (c_common_post_options): Wrap apostrophes
1221 in gcc internal format with %'.
1222
1223 2019-03-11 Martin Liska <mliska@suse.cz>
1224
1225 * c-attribs.c (handle_nocf_check_attribute): Wrap an option name
1226 in a string format message and fix GNU coding style.
1227 * c-common.c (vector_types_convertible_p): Likewise.
1228 (c_build_vec_perm_expr): Likewise.
1229 * c-indentation.c (get_visual_column): Likewise.
1230 * c-opts.c (c_common_handle_option): Likewise.
1231 (c_common_post_options): Likewise.
1232 (sanitize_cpp_opts): Likewise.
1233 * c-pch.c (c_common_pch_pragma): Likewise.
1234 * c-pragma.c (handle_pragma_pack): Likewise.
1235
1236 2019-03-08 Jakub Jelinek <jakub@redhat.com>
1237
1238 PR tree-optimization/89550
1239 * c-common.c (c_common_truthvalue_conversion): Only set
1240 TREE_NO_WARNING if warning_at returned true.
1241 * c-warn.c (overflow_warning, warn_logical_operator): Likewise.
1242
1243 2019-02-25 Sandra Loosemore <sandra@codesourcery.com>
1244 Martin Sebor <msebor@gmail.com>
1245
1246 * c.opt (Wmissing-attributes): Clean up doc string.
1247
1248 2019-02-25 Jakub Jelinek <jakub@redhat.com>
1249
1250 PR c/89495
1251 * c-format.c (maybe_read_dollar_number): Compute nargnum in
1252 HOST_WIDE_INT type to avoid overflows and change overflow_flag
1253 checking.
1254
1255 2019-02-22 Richard Biener <rguenther@suse.de>
1256
1257 * c-pch.c (no_checksum): Remove.
1258 (pch_init): Remove assertion that executable_checksum is not
1259 all zero.
1260 (c_common_valid_pch): Likewise.
1261
1262 2019-02-18 Martin Sebor <msebor@redhat.com>
1263
1264 PR middle-end/89294
1265 * c-common.c (invalid_array_size_error): Handle cst_size_not_constant.
1266
1267 2019-02-16 David Malcolm <dmalcolm@redhat.com>
1268
1269 PR c++/88680
1270 * c-common.c (shorten_compare): Call fold_for_warn on op0 when
1271 implementing -Wtype-limits.
1272
1273 2019-02-11 Martin Sebor <msebor@redhat.com>
1274
1275 PR c++/87996
1276 * c-common.c (invalid_array_size_error): New function.
1277 (valid_array_size_p): Call it. Handle size as well as type.
1278 * c-common.h (valid_constant_size_p): New function.
1279 (enum cst_size_error): New type.
1280
1281 2019-01-31 David Malcolm <dmalcolm@redhat.com>
1282
1283 PR c/89122
1284 * known-headers.cc (get_stdlib_header_for_name): Add
1285 {FLT|DBL|LDBL}_{MAX|MIN} to "hints" array.
1286
1287 2019-01-31 Jakub Jelinek <jakub@redhat.com>
1288
1289 PR libstdc++/88170
1290 * c-pretty-print.c (pp_c_enumeration_constant): Print always as
1291 a C cast in pp_c_flag_gnu_v3 mode.
1292
1293 2019-01-29 Jakub Jelinek <jakub@redhat.com>
1294
1295 PR c/86125
1296 * c-common.c (c_common_nodes_and_builtins): Build type variants for
1297 builtin_structptr_types types even for C.
1298
1299 2019-01-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
1300
1301 * c-warn.c (check_address_or_pointer_of_packed_member): Handle the case
1302 when rhs is of array type correctly. Fix handling of nested structures.
1303 Fix handling of indirect_ref together with nop_expr and/or addr_expr.
1304 (check_and_warn_address_or_pointer_of_packed_member): Fix handling of
1305 type casts within nested compound expressions.
1306
1307 2019-01-22 Jakub Jelinek <jakub@redhat.com>
1308
1309 PR middle-end/88968
1310 * c-omp.c (c_finish_omp_atomic): For bitfield atomics, update type
1311 variable after using BIT_FIELD_REF.
1312
1313 2019-01-18 H.J. Lu <hongjiu.lu@intel.com>
1314
1315 PR c/51628
1316 PR c/88664
1317 * c-common.h (warn_for_address_or_pointer_of_packed_member):
1318 Remove the boolean argument.
1319 * c-warn.c (check_address_of_packed_member): Renamed to ...
1320 (check_address_or_pointer_of_packed_member): This. Also
1321 warn pointer conversion.
1322 (check_and_warn_address_of_packed_member): Renamed to ...
1323 (check_and_warn_address_or_pointer_of_packed_member): This.
1324 Also warn pointer conversion.
1325 (warn_for_address_or_pointer_of_packed_member): Remove the
1326 boolean argument. Don't check pointer conversion here.
1327
1328 2019-01-15 Richard Sandiford <richard.sandiford@arm.com>
1329
1330 PR inline-asm/52813
1331 * c.opt (Wdeprecated): Move documentation and variable to common.opt.
1332
1333 2019-01-14 Jakub Jelinek <jakub@redhat.com>
1334
1335 * c-cppbuiltin.c (c_cpp_builtin): Define __cpp_guaranteed_copy_elision
1336 and __cpp_nontype_template_parameter_auto. Add a comment that
1337 __cpp_template_auto is deprecated.
1338
1339 2019-01-14 Tom Honermann <tom@honermann.net>
1340
1341 Implement P0482R5, char8_t: A type for UTF-8 characters and strings
1342 * c-common.c (c_common_reswords): Add char8_t.
1343 (fix_string_type): Use char8_t for the type of u8 string literals.
1344 (c_common_get_alias_set): char8_t doesn't alias.
1345 (c_common_nodes_and_builtins): Define char8_t as a builtin type in
1346 C++.
1347 (c_stddef_cpp_builtins): Add __CHAR8_TYPE__.
1348 (keyword_begins_type_specifier): Add RID_CHAR8.
1349 * c-common.h (rid): Add RID_CHAR8.
1350 (c_tree_index): Add CTI_CHAR8_TYPE and CTI_CHAR8_ARRAY_TYPE.
1351 Define D_CXX_CHAR8_T and D_CXX_CHAR8_T_FLAGS.
1352 Define char8_type_node and char8_array_type_node.
1353 * c-cppbuiltin.c (cpp_atomic_builtins): Predefine
1354 __GCC_ATOMIC_CHAR8_T_LOCK_FREE.
1355 (c_cpp_builtins): Predefine __cpp_char8_t.
1356 * c-lex.c (lex_string): Use char8_array_type_node as the type of
1357 CPP_UTF8STRING.
1358 (lex_charconst): Use char8_type_node as the type of CPP_UTF8CHAR.
1359 * c-opts.c: If not otherwise specified, enable -fchar8_t when
1360 targeting C++2a.
1361 * c.opt: Add the -fchar8_t command line option.
1362
1363 2019-01-14 Martin Sebor <msebor@redhat.com>
1364
1365 PR target/88638
1366 * c-attribs.c (positional_argument): Call valid_format_string_type_p
1367 and issue errors if it fails.
1368 * c-common.h (valid_format_string_type_p): Declare.
1369 * c-format.c (valid_stringptr_type_p): Rename...
1370 (valid_format_string_type_p): ...to this and make extern.
1371 (handle_format_arg_attribute): Adjust to new name.
1372 (check_format_string): Same.
1373
1374 2019-01-13 H.J. Lu <hongjiu.lu@intel.com>
1375
1376 * c-warn.c (warn_for_address_or_pointer_of_packed_member):
1377 Replace "may may" with "may" in warning message.
1378
1379 2019-01-07 Jakub Jelinek <jakub@redhat.com>
1380
1381 PR c++/85052
1382 * c-common.h (enum rid): Add RID_BUILTIN_CONVERTVECTOR.
1383 (c_build_vec_convert): Declare.
1384 * c-common.c (c_build_vec_convert): New function.
1385
1386 2019-01-04 Martin Sebor <msebor@redhat.com>
1387
1388 PR c/88546
1389 * c-attribs.c (handle_copy_attribute): Avoid copying attribute leaf.
1390 Handle C++ empty throw specification and C11 _Noreturn.
1391 (has_attribute): Also handle C11 _Noreturn.
1392
1393 2019-01-04 Martin Sebor <msebor@redhat.com>
1394
1395 PR c/88363
1396 * c-attribs.c (positional_argument): Also accept enumerated types.
1397
1398 2019-01-01 Jakub Jelinek <jakub@redhat.com>
1399
1400 Update copyright years.
1401
1402 2018-12-20 H.J. Lu <hongjiu.lu@intel.com>
1403
1404 PR c/51628
1405 * c-common.h (warn_for_address_or_pointer_of_packed_member): New.
1406 * c-warn.c (check_alignment_of_packed_member): New function.
1407 (check_address_of_packed_member): Likewise.
1408 (check_and_warn_address_of_packed_member): Likewise.
1409 (warn_for_address_or_pointer_of_packed_member): Likewise.
1410 * c.opt: Add -Wno-address-of-packed-member.
1411
1412 2018-12-20 David Malcolm <dmalcolm@redhat.com>
1413
1414 PR c++/87504
1415 * c-warn.c (get_outermost_macro_expansion): New function.
1416 (spelled_the_same_p): Use it to unwind the macro expansions, and
1417 compare the outermost macro in each nested expansion, rather than
1418 the innermost.
1419
1420 2018-12-19 David Malcolm <dmalcolm@redhat.com>
1421
1422 PR c++/87504
1423 * c-common.h (warn_tautological_cmp): Convert 1st param from
1424 location_t to const op_location_t &.
1425 * c-warn.c (find_array_ref_with_const_idx_r): Call fold_for_warn
1426 when testing for INTEGER_CST.
1427 (warn_tautological_bitwise_comparison): Convert 1st param from
1428 location_t to const op_location_t &; use it to build a
1429 binary_op_rich_location, and use this.
1430 (spelled_the_same_p): New function.
1431 (warn_tautological_cmp): Convert 1st param from location_t to
1432 const op_location_t &. Warn for macro expansions if
1433 spelled_the_same_p. Use binary_op_rich_location.
1434
1435 2018-12-19 David Malcolm <dmalcolm@redhat.com>
1436
1437 PR c++/43064
1438 PR c++/43486
1439 * c-common.c (unsafe_conversion_p): Fold any location wrapper.
1440 (verify_tree): Handle location wrappers.
1441 (c_common_truthvalue_conversion): Strip any location wrapper.
1442 Handle CONST_DECL.
1443 (fold_offsetof): Strip any location wrapper.
1444 (complete_array_type): Likewise for initial_value.
1445 (convert_vector_to_array_for_subscript): Call fold_for_warn on the
1446 index before checking for INTEGER_CST.
1447 * c-pretty-print.c (c_pretty_printer::primary_expression): Don't
1448 print parentheses around location wrappers.
1449 * c-warn.c (warn_logical_operator): Call fold_for_warn on op_right
1450 before checking for INTEGER_CST.
1451 (warn_tautological_bitwise_comparison): Call
1452 tree_strip_any_location_wrapper on lhs, rhs, and bitop's operand
1453 before checking for INTEGER_CST.
1454 (readonly_error): Strip any location wrapper.
1455 (warn_array_subscript_with_type_char): Strip location wrappers
1456 before checking for INTEGER_CST. Use the location of the index if
1457 available.
1458
1459 2018-12-06 Jason Merrill <jason@redhat.com>
1460
1461 PR c++/88136 - -Wdeprecated-copy false positives
1462 * c.opt (Wdeprecated-copy-dtor): New.
1463 (Wdeprecated-copy): Move to -Wextra.
1464
1465 2018-11-29 Martin Sebor <msebor@redhat.com>
1466
1467 PR c/88172
1468 PR testsuite/88208
1469 * c-attribs.c (common_handle_aligned_attribute): Silently avoid setting
1470 alignments to values less than the target requires.
1471 (has_attribute): For attribute aligned consider both the attribute
1472 and the alignment bits.
1473 * c-common.c (c_init_attributes): Optionally issue a warning for
1474 zero alignment.
1475
1476 2018-11-28 Martin Sebor <msebor@redhat.com>
1477
1478 PR c/88065
1479 PR c/87297
1480 * c-warn.c (sizeof_pointer_memaccess_warning): Bail if source
1481 or destination is an error.
1482
1483 2018-11-28 Jakub Jelinek <jakub@redhat.com>
1484
1485 PR c++/88215
1486 * c-ubsan.c: Include langhooks.h.
1487 (ubsan_instrument_division): Change gcc_assert that main variants
1488 of op0 and op1 types are equal to gcc_checking_assert that the
1489 main variants are compatible types.
1490
1491 2018-11-27 Eric Botcazou <ebotcazou@adacore.com>
1492
1493 * c-ada-spec.c: Include stringpool.h.
1494 (has_static_fields): Return false for incomplete types.
1495 (is_tagged_type): Likewise.
1496 (has_nontrivial_methods): Likewise.
1497 (dump_ada_node) <INTEGER_TYPE>: Deal specifically with __int128.
1498 (struct overloaded_name_hash): New structure.
1499 (struct overloaded_name_hasher): Likewise.
1500 (overloaded_names): New global variable.
1501 (init_overloaded_names): New static function.
1502 (overloaded_name_p): New predicate.
1503 (dump_ada_declaration) <TYPE_DECL>: Tidy up and set TREE_VISITED
1504 on the TYPE_STUB_DECL of the original type of a typedef, if any.
1505 <FUNCTION_DECL>: Bail out for an unsupported overloaded name.
1506 Remove always-true condition and dump forward types.
1507 (dump_ada_specs): Delete overloaded_names.
1508
1509 2018-11-20 Martin Sebor <msebor@redhat.com>
1510
1511 * c-attribs.c (type_for_vector_size): New function.
1512 (type_valid_for_vector_size): Same.
1513 (handle_vector_size_attribute): Move code to the functions above
1514 and call them.
1515 (validate_attribute, has_attribute): New functions.
1516 * c-common.h (has_attribute): Declare.
1517 (rid): Add RID_HAS_ATTRIBUTE_EXPRESSION.
1518 * c-common.c (c_common_resword): Same.
1519
1520 2018-11-16 Jason Merrill <jason@redhat.com>
1521
1522 * c-lex.c (c_common_has_attribute): Handle likely/unlikely.
1523 * c-attribs.c (attr_cold_hot_exclusions): Make public.
1524
1525 2018-11-16 Jakub Jelinek <jakub@redhat.com>
1526
1527 PR middle-end/87854
1528 * c-common.c (fix_string_type): Reject string literals larger than
1529 TYPE_MAX_VALUE (ssizetype) bytes.
1530
1531 2018-11-15 Martin Sebor <msebor@redhat.com>
1532
1533 PR c++/87541
1534 PR c++/87542
1535 * c-attribs.c (positional_argument): New function.
1536 (handle_alloc_size_attribute): Use it and simplify.
1537 (handle_alloc_align_attribute): Same.
1538 (handle_assume_aligned_attribute): Same.
1539 (handle_nonnull_attribute): Same.
1540 * c-common.c (check_function_arguments): Pass fntype to
1541 check_function_format.
1542 * c-common.h (check_function_format): Add an argument.
1543 (PosArgFlags, positional_argument): Declare new type and function.
1544 * c-format.c (decode_format_attr): Add arguments.
1545 (check_format_string, get_constant): Same.
1546 (convert_format_name_to_system_name): Adjust.
1547
1548 2018-11-15 David Malcolm <dmalcolm@redhat.com>
1549
1550 PR other/19165
1551 * c-opts.c (c_diagnostic_finalizer): Add diagnostic_t param.
1552
1553 2018-11-14 Jakub Jelinek <jakub@redhat.com>
1554
1555 P1236R1 - Signed integers are two's complement
1556 * c-warn.c (maybe_warn_shift_overflow): Don't warn for c++2a.
1557 * c-ubsan.c (ubsan_instrument_shift): Make signed shifts
1558 with in-range second operand well defined for -std=c++2a.
1559
1560 PR other/88007
1561 * c-common.c (parse_optimize_options): Allocate option string from
1562 opts_obstack rather than as GC memory. Move the allocation after
1563 warning for invalid option.
1564
1565 2018-11-13 David Malcolm <dmalcolm@redhat.com>
1566
1567 * c-common.c (c_get_substring_location): Update for renaming of
1568 get_source_location_for_substring to get_location_within_string.
1569 * c-lex.c: Replace "source_location" with "location_t".
1570 * c-opts.c: Likewise.
1571 * c-ppoutput.c: Likewise.
1572
1573 2018-11-13 Martin Sebor <msebor@redhat.com>
1574
1575 PR middle-end/81824
1576 * c-attribs.c (handle_copy_attribute): Exclude inlining attributes.
1577 (handle_tls_model_attribute): Improve diagnostics.
1578
1579 2018-11-12 Jason Merrill <jason@redhat.com>
1580
1581 * c-cppbuiltin.c (c_cpp_builtins): Define
1582 __cpp_impl_destroying_delete.
1583
1584 * c-cppbuiltin.c (c_cpp_builtins): Change __cpp_explicit_bool to
1585 __cpp_conditional_explicit.
1586
1587 2018-11-09 Martin Sebor <msebor@redhat.com>
1588
1589 PR middle-end/81824
1590 * c-attribs.c (handle_copy_attribute): New function.
1591
1592 2018-11-09 Martin Sebor <msebor@redhat.com>
1593
1594 PR c/87795
1595 * c-common.c (check_user_alignment): Use MAX_OFILE_ALIGNMENT.
1596
1597 2018-11-08 Jakub Jelinek <jakub@redhat.com>
1598
1599 * c-common.h (c_finish_omp_taskgroup): Add CLAUSES argument.
1600 (c_finish_omp_atomic): Replace bool SEQ_CST argument with
1601 enum omp_memory_order MEMORY_ORDER.
1602 (c_finish_omp_flush): Add MO argument.
1603 (c_omp_depend_t_p, c_finish_omp_depobj): Declare.
1604 (c_finish_omp_for): Add FINAL_P argument.
1605 * c-omp.c: Include memmodel.h.
1606 (c_finish_omp_taskgroup): Add CLAUSES argument. Set
1607 OMP_TASKGROUP_CLAUSES to it.
1608 (c_finish_omp_atomic): Replace bool SEQ_CST argument with
1609 enum omp_memory_order MEMORY_ORDER. Set OMP_ATOMIC_MEMORY_ORDER
1610 instead of OMP_ATOMIC_SEQ_CST.
1611 (c_omp_depend_t_p, c_finish_omp_depobj): New functions.
1612 (c_finish_omp_flush): Add MO argument, if not MEMMODEL_LAST, emit
1613 __atomic_thread_fence call with the given value.
1614 (check_omp_for_incr_expr): Formatting fixes.
1615 (c_finish_omp_for): Add FINAL_P argument. Allow NE_EXPR
1616 even in OpenMP loops, diagnose if NE_EXPR and incr expression
1617 is not constant expression 1 or -1. Transform NE_EXPR loops
1618 with iterators pointers to VLA into LT_EXPR or GT_EXPR loops.
1619 (c_omp_check_loop_iv_r): Look for orig decl of C++ range for
1620 loops too.
1621 (c_omp_split_clauses): Add support for combined
1622 #pragma omp parallel master and
1623 #pragma omp {,parallel }master taskloop{, simd} constructs.
1624 Handle OMP_CLAUSE_IN_REDUCTION. Handle OMP_CLAUSE_REDUCTION_TASK.
1625 Handle OMP_CLAUSE_NONTEMPORAL. Handle splitting OMP_CLAUSE_IF
1626 also to OMP_SIMD. Copy OMP_CLAUSE_LASTPRIVATE_CONDITIONAL.
1627 (c_omp_predetermined_sharing): Don't return
1628 OMP_CLAUSE_DEFAULT_SHARED for const qualified decls.
1629 * c-pragma.c (omp_pragmas): Add PRAGMA_OMP_DEPOBJ and
1630 PRAGMA_OMP_REQUIRES.
1631 * c-pragma.h (enum pragma_kind): Likewise.
1632 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_NONTEMPORAL
1633 and PRAGMA_OMP_CLAUSE_{IN,TASK}_REDUCTION.
1634
1635 2018-11-08 David Malcolm <dmalcolm@redhat.com>
1636
1637 * c-format.c (gcc_dump_printf_char_table): Add entry for %f.
1638
1639 2018-11-08 David Malcolm <dmalcolm@redhat.com>
1640
1641 * c-format.c (local_cgraph_node_ptr_node): New variable.
1642 (gcc_dump_printf_char_table): Add entry for %C.
1643 (get_pointer_to_named_type): New function, taken from the handling
1644 code for "gimple *" from...
1645 (init_dynamic_diag_info): ...here. Add handling for
1646 "cgraph_node *".
1647 * c-format.h (T_CGRAPH_NODE): New.
1648
1649 2018-10-19 Jason Merrill <jason@redhat.com>
1650
1651 * c-cppbuiltin.c (c_cpp_builtins): Add
1652 __cpp_nontype_template_parameter_class.
1653
1654 2018-10-31 Nathan Sidwell <nathan@acm.org>
1655
1656 * c-opts.c (c_finish_options): Force command line macro
1657 location. Refactor to avoid repeating main debug hook.
1658 (push_command_line_include): Clarify comment.
1659
1660 * c-opts.c (c_finish_options): Adjust cpp_force_token_locations call.
1661
1662 2018-10-30 Martin Sebor <msebor@redhat.com>
1663
1664 PR middle-end/87041
1665 * c-format.c (check_format_types): Avoid diagnosing null pointer
1666 arguments to printf-family of functions.
1667
1668 2018-10-30 Marek Polacek <polacek@redhat.com>
1669
1670 Implement P0892R2, explicit(bool).
1671 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_explicit_bool.
1672
1673 2018-10-29 David Malcolm <dmalcolm@redhat.com>
1674
1675 * name-hint.h (name_hint::take_deferred): New member function.
1676
1677 2018-10-29 David Malcolm <dmalcolm@redhat.com>
1678
1679 PR c++/56856
1680 * c-common.c (check_function_sentinel): Call fold_for_warn on the
1681 argument.
1682 (check_function_restrict): Rename param "argarray" to
1683 "unfolded_argarray", and make a copy named "argarray", calling
1684 fold_for_warn on each argument.
1685 (check_function_arguments): Add note about responsibility for
1686 folding the arguments.
1687
1688 2018-10-17 Joseph Myers <joseph@codesourcery.com>
1689
1690 * c-common.c (flag_isoc2x): New variable.
1691 * c-common.h (clk_c): Update comment to reference C2X.
1692 (flag_isoc99, flag_isoc11): Update comments to reference future
1693 standard versions in general.
1694 (flag_isoc2x): Declare.
1695 * c-opts.c (set_std_c2x): New function.
1696 (c_common_handle_option): Handle -std=c2x and -std=gnu2x.
1697 (set_std_c89, set_std_c99, set_std_c11, set_std_c17): Set
1698 flag_isoc2x to 0.
1699 * c.opt (Wc11-c2x-compat, std=c2x, std=gnu2x): New options.
1700
1701 2018-10-17 Joseph Myers <joseph@codesourcery.com>
1702
1703 * c.opt (std=c17, std=c18, std=gnu17, std=gnu18, std=iso9899:2017)
1704 (std=iso9899:2018): Document C17 as published in 2018.
1705
1706 2018-10-12 Christophe Lyon <christophe.lyon@linaro.org>
1707
1708 PR c++/87364
1709 * c-pretty-print.c (c_pretty_printer::constant): Fix typo.
1710
1711 2018-10-11 Will Wray <wjwray@gmail.com>
1712
1713 PR c++/87364
1714 * c-pretty-print.h (pp_c_type_cast): Prototype.
1715 (pp_c_integer_constant): Likewise.
1716 * c-pretty-print.c (pp_c_type_cast): No longer static.
1717 (pp_c_integer_constant): Likewise.
1718 (pp_c_enumeration_constant): Fix loop termination when finding
1719 name of constant. No longer returns a value. Call
1720 pp_c_integer_constant.
1721 (c_pretty_printer::constant): Update for changes to
1722 pp_c_enumeration_constant.
1723
1724 2018-10-11 Jakub Jelinek <jakub@redhat.com>
1725
1726 * c-lex.c (c_common_has_attribute): Return 201803 instead of 20180312
1727 for no_unique_address.
1728
1729 2018-10-09 David Malcolm <dmalcolm@redhat.com>
1730
1731 * c-common.c (c_option_controlling_cpp_error): Rename to...
1732 (c_option_controlling_cpp_diagnostic): ...this, and convert
1733 "reason" from int to enum.
1734 (c_cpp_error): Rename to...
1735 (c_cpp_diagnostic): ...this, converting level and reason to enums.
1736 * c-common.h (c_cpp_error): Rename to...
1737 (c_cpp_diagnostic): ...this, converting level and reason to enums.
1738 * c-opts.c (c_common_init_options): Update for renaming.
1739
1740 2018-10-08 Richard Sandiford <richard.sandiford@arm.com>
1741
1742 PR c/87286
1743 * c-common.c (vector_types_compatible_elements_p): Use
1744 INTEGRAL_TYPE_P instead of checking only for INTEGER_TYPE.
1745
1746 2018-10-04 Vinay Kumar <vinay.kumar@blackfigtech.com>
1747
1748 * c-attribs.c (get_priority): Add a warning flag warn_prio_ctor_dtor
1749 to generate constructor destructor priority warning.
1750 * c.opt (-Wprio-ctor-dtor): New option.
1751
1752 2018-10-01 Jason Merrill <jason@redhat.com>
1753
1754 * c-lex.c (c_common_has_attribute): Add no_unique_address.
1755
1756 2018-10-01 Eric Botcazou <ebotcazou@adacore.com>
1757
1758 * c-ada-spec.c (get_underlying_decl): Get to the main type variant.
1759 (dump_ada_node): Add const keyword.
1760
1761 2018-09-25 Martin Liska <mliska@suse.cz>
1762
1763 * c-common.c (c_common_truthvalue_conversion):
1764 Remove Pascal from documentation.
1765
1766 2018-09-21 Eric Botcazou <ebotcazou@adacore.com>
1767
1768 * c-ada-spec.c: Include diagnostic.h.
1769 (dump_ada_declaration) <RECORD_TYPE>: Issue a warning on packed layout.
1770
1771 2018-09-19 Marek Polacek <polacek@redhat.com>
1772
1773 * c.opt (Wclass-conversion): New.
1774
1775 2018-09-17 David Malcolm <dmalcolm@redhat.com>
1776
1777 * c-format.c (range_label_for_format_type_mismatch::get_text):
1778 Update for new param.
1779
1780 2018-09-17 David Malcolm <dmalcolm@redhat.com>
1781
1782 * c-format.c (format_warning_at_char): Update for introduction of
1783 format_string_diagnostic_t.
1784 (format_type_warning): Likewise.
1785
1786 2018-09-17 Martin Jambor <mjambor@suse.cz>
1787
1788 PR c/63886
1789 * c.opt (Wabsolute-value): New.
1790
1791 2018-09-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
1792
1793 * c-common.c (complete_flexible_array_elts): New helper function.
1794 * c-common.h (complete_flexible_array_elts): Declare.
1795
1796 2018-09-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
1797
1798 * c-common.c (braced_list_to_string): Remove eval parameter.
1799 Add some more checks. Always create zero-terminated STRING_CST.
1800 * c-common.h (braced_list_to_string): Adjust prototype.
1801
1802 2018-08-27 David Malcolm <dmalcolm@redhat.com>
1803
1804 PR 87091
1805 * c-common.c (c_cpp_error): Update for conversion of show_caret_p
1806 to a tri-state.
1807 (maybe_suggest_missing_token_insertion): Likewise.
1808 (maybe_add_include_fixit): Add param "override_location". If set,
1809 and source-printing is enabled, then override the rich_location's
1810 primary location with that of the insertion point for the fix-it
1811 hint, marking it with SHOW_LINES_WITHOUT_RANGE.
1812 * c-common.h (extern void maybe_add_include_fixit): Add bool
1813 param.
1814 * c-format.c (selftest::test_type_mismatch_range_labels): Update
1815 for conversion of show_caret_p to a tri-state.
1816 * c-warn.c (warn_for_restrict): Likewise.
1817 * known-headers.cc
1818 (suggest_missing_header::~suggest_missing_header): Update call to
1819 maybe_add_include_fixit to suggest overriding the location, as it
1820 is for a note.
1821
1822 2018-08-27 Martin Liska <mliska@suse.cz>
1823
1824 * c-common.c (check_function_restrict): Use new function
1825 fndecl_built_in_p and remove check for FUNCTION_DECL if
1826 possible.
1827 (check_builtin_function_arguments): Likewise.
1828 (reject_gcc_builtin): Likewise.
1829 * c-warn.c (sizeof_pointer_memaccess_warning): Likewise.
1830
1831 2018-08-26 Marek Polacek <polacek@redhat.com>
1832
1833 PR c++/87029, Implement -Wredundant-move.
1834 * c.opt (Wredundant-move): New option.
1835
1836 2018-08-21 Marek Polacek <polacek@redhat.com>
1837
1838 PR c++/86981, Implement -Wpessimizing-move.
1839 * c.opt (Wpessimizing-move): New option.
1840
1841 2018-08-20 David Malcolm <dmalcolm@redhat.com>
1842
1843 PR other/84889
1844 * c-attribs.c (common_handle_aligned_attribute): Add
1845 auto_diagnostic_group instance.
1846 * c-indentation.c (warn_for_misleading_indentation): Likewise.
1847 * c-opts.c (c_common_post_options): Likewise.
1848 * c-warn.c (warn_logical_not_parentheses): Likewise.
1849 (warn_duplicated_cond_add_or_warn): Likewise.
1850 (warn_for_multistatement_macros): Likewise.
1851
1852 2018-08-20 Nathan Sidwell <nathan@acm.org>
1853
1854 * c-ada-spec.c (macro_length, dump_ada_macros): Adjust macro parm
1855 access.
1856
1857 2018-08-17 Nathan Sidwell <nathan@acm.org>
1858
1859 * c-cppbuiltin.c (struct lazy_hex_fp_value_struct): Remove macro
1860 field.
1861 (laxy_hex_fp_value_count): Make unsigned.
1862 (lazy_hex_fp_value): Provided with macro & lazy number. Directly
1863 manipulate the macro.
1864 (builtin_defin_with_hex_fp_value): Adjust callback name, use
1865 cpp_define_lazily.
1866
1867 2018-08-17 David Malcolm <dmalcolm@redhat.com>
1868
1869 * c-format.c (enum format_type): Add gcc_dump_printf_format_type.
1870 (gcc_dump_printf_length_specs): New.
1871 (gcc_dump_printf_flag_pairs): New.
1872 (gcc_dump_printf_flag_specs): New.
1873 (gcc_dump_printf_char_table): New.
1874 (format_types_orig): Add entry for "gcc_dump_printf".
1875 (init_dynamic_diag_info): Set up length_char_specs and
1876 conversion_specs for gcc_dump_printf_format_type.
1877 (handle_format_attribute): Handle gcc_dump_printf_format_type.
1878
1879 2018-08-17 Nathan Sidwell <nathan@acm.org>
1880
1881 * c-ada-spec.c (macro_length, dump_ada_macros): Constify.
1882
1883 * c-ada-spec.c: Don't #include "cpp-id-data.h"
1884 * c-cppbuiltin.c: Likewise.
1885
1886 2018-08-17 Martin Liska <mliska@suse.cz>
1887
1888 * c.opt: Remove Warn, Init and Report for options with
1889 Ignore/Deprecated flag. Warning is done automatically for
1890 Deprecated flags.
1891
1892 2018-08-16 David Malcolm <dmalcolm@redhat.com>
1893
1894 PR c++/70693
1895 * c-common.c (selftest::c_family_tests): Call
1896 selftest::c_indentation_c_tests.
1897 * c-common.h (selftest::c_indentation_c_tests): New decl.
1898 * c-indentation.c: Include "selftest.h".
1899 (next_tab_stop): Add "tab_width" param, rather than accessing
1900 cpp_opts.
1901 (get_visual_column): Likewise. Clarify comment. Bulletproof
1902 against reading past the end of the line.
1903 (get_first_nws_vis_column): Add "tab_width" param.
1904 (detect_intervening_unindent): Likewise.
1905 (should_warn_for_misleading_indentation): Read tab width from
1906 cpp_opts and pass around.
1907 (selftest::test_next_tab_stop): New test.
1908 (selftest::assert_get_visual_column_succeeds): New function.
1909 (ASSERT_GET_VISUAL_COLUMN_SUCCEEDS): New macro.
1910 (selftest::assert_get_visual_column_fails): New function.
1911 (ASSERT_GET_VISUAL_COLUMN_FAILS): New macro.
1912 (selftest::test_get_visual_column): New test.
1913 (selftest::c_indentation_c_tests): New function.
1914
1915 2018-08-16 Nathan Sidwell <nathan@acm.org>
1916
1917 * c-ada-spec.c (count_ada_macro): Use cpp_user_macro_p.
1918 (store_ada_macro): Likewise.
1919 * c-ppoutput.c (cb_used_define, dump_macro): Likewise.
1920 * c-spellcheck.cc (should-suggest_as_macro_p): Likewise,
1921
1922 2018-08-15 David Malcolm <dmalcolm@redhat.com>
1923
1924 * c-format.c: Include "selftest-diagnostic.h" and
1925 "gcc-rich-location.h".
1926 (format_warning_at_char): Pass NULL for new label params of
1927 format_warning_va.
1928 (class indirection_suffix): New class.
1929 (class range_label_for_format_type_mismatch): New class.
1930 (format_type_warning): Move logic for generating "*" suffix to
1931 class indirection_suffix. Create "fmt_label" and "param_label"
1932 to show their types, and pass them to the
1933 format_warning_at_substring calls.
1934 (selftest::test_type_mismatch_range_labels): New test.
1935 (selftest::c_format_c_tests): Call it.
1936
1937 2018-08-13 Martin Sebor <msebor@redhat.com>
1938
1939 PR tree-optimization/71625
1940 * c-common.c (braced_list_to_string): New function.
1941 * c-common.h (braced_list_to_string): Declare it.
1942
1943 2018-08-08 Nathan Sidwell <nathan@acm.org>
1944
1945 * c-common.c (try_to_locate_new_include_inertion_point): Use
1946 linemap_included_from_linemap.
1947 * c-lex.c (fe_file_change): Use linemap_included_from.
1948 * c-ppoutput.c (pp_file_change): Likewise.
1949
1950 2018-08-01 Martin Sebor <msebor@redhat.com>
1951
1952 PR tree-optimization/86650
1953 * c-format.c (gcc_tdiag_char_table): Update comment for "%G".
1954 (gcc_cdiag_char_table, gcc_cxxdiag_char_table): Same.
1955 (init_dynamic_diag_info): Update from "gcall *" to "gimple *".
1956 * c-format.h (T89_G): Update to be "gimple *" rather than
1957 "gcall *".
1958 (local_gcall_ptr_node): Rename...
1959 (local_gimple_ptr_node): ...to this.
1960
1961 2018-07-31 David Malcolm <dmalcolm@redhat.com>
1962
1963 * c-format.c (PP_FORMAT_CHAR_TABLE): New macro, based on existing
1964 table entries for gcc_diag_char_table, and the 'Z' entry from
1965 gcc_tdiag_char_table, changing the "chain" entry for 'Z' from
1966 &gcc_tdiag_char_table[0] to &gcc_diag_char_table[0].
1967 (gcc_diag_char_table): Use PP_FORMAT_CHAR_TABLE, implicitly
1968 adding missing "Z" for this table. Remove erroneous "G" and "K"
1969 entries.
1970 (gcc_tdiag_char_table): Use PP_FORMAT_CHAR_TABLE. Remove "v".
1971 (gcc_cdiag_char_table): Use PP_FORMAT_CHAR_TABLE.
1972 (gcc_cxxdiag_char_table): Use PP_FORMAT_CHAR_TABLE. Remove "v".
1973
1974 2018-07-31 Richard Earnshaw <rearnsha@arm.com>
1975
1976 * c-common.c (speculation_safe_resolve_call): New function.
1977 (speculation_safe_resolve_params): New function.
1978 (speculation_safe_resolve_return): New function.
1979 (resolve_overloaded_builtin): Handle __builtin_speculation_safe_value.
1980 * c-cppbuiltin.c (c_cpp_builtins): Add pre-define for
1981 __HAVE_SPECULATION_SAFE_VALUE.
1982
1983 2018-07-20 David Malcolm <dmalcolm@redhat.com>
1984
1985 * c-common.c (c_cpp_error): Remove redundant "line_table"
1986 parameter from call to rich_location::set_range.
1987 (maybe_suggest_missing_token_insertion): Likewise.
1988
1989 2018-07-20 Martin Sebor <msebor@redhat.com>
1990
1991 PR middle-end/82063
1992 * c.opt (-Warray-bounds): Remove redundant -Wall.
1993
1994 2018-07-20 Martin Sebor <msebor@redhat.com>
1995
1996 PR middle-end/82063
1997 * c-common.h (c_common_handle_option): Change function argument
1998 to HOST_WIDE_INT.
1999 * c-opts.c (c_common_init_options): Same.
2000 (c_common_handle_option): Same. Remove special handling of
2001 OPT_Walloca_larger_than_ and OPT_Wvla_larger_than_.
2002 * c.opt (-Walloc-size-larger-than, -Walloca-larger-than): Change
2003 options to take a HOST_WIDE_INT argument and accept a byte-size
2004 suffix. Initialize.
2005 (-Wvla-larger-than): Same.
2006 (-Wno-alloc-size-larger-than, -Wno-alloca-larger-than): New.
2007 (-Wno-vla-larger-than): Same.
2008
2009 2018-07-12 Jakub Jelinek <jakub@redhat.com>
2010
2011 * c-attribs.c (c_common_attribute_table): Add
2012 "omp declare target implicit" attribute.
2013
2014 2018-07-12 Richard Biener <rguenther@suse.de>
2015
2016 PR c/86453
2017 * c-attribs.c (handle_packed_attribute): Do not build a variant
2018 type with TYPE_PACKED, instead ignore the attribute if we may
2019 not apply to the original type.
2020
2021 2018-07-10 Jakub Jelinek <jakub@redhat.com>
2022
2023 PR c++/86443
2024 * c-omp.c (c_omp_check_loop_iv_r, c_omp_check_loop_iv): Allow declv
2025 to contain TREE_LIST for both the original class iterator and the
2026 "last" helper var.
2027
2028 2018-07-07 Eric Botcazou <ebotcazou@adacore.com>
2029
2030 * c-ada-spec.c (to_ada_name): Remove index parameter.
2031 (pp_ada_tree_identifier): Likewise.
2032 (dump_ada_macros): Adjust call to to_ada_name.
2033 (struct overloaded_name_hash): Delete.
2034 (struct overloaded_name_hasher): Likewise.
2035 (overloaded_names): Likewise.
2036 (compute_overloading_index): Likewise.
2037 (dump_ada_decl_name): Do not call compute_overloading_index and
2038 adjust calls to pp_ada_tree_identifier.
2039 (dump_ada_double_name): Adjust calls to pp_ada_tree_identifier.
2040 (dump_ada_import): Add spc parameter and switch to aspect syntax.
2041 (dump_ada_function_declaration): Adjust call to pp_ada_tree_identifier.
2042 (dump_ada_enum_type): Remove type and display_convention parameters.
2043 Adjust calls to pp_ada_tree_identifier.
2044 (dump_ada_node): Likewise and for dump_ada_structure.
2045 (dump_nested_type) <ENUMERAL_TYPE>: Adjust call to dump_ada_enum_type
2046 and tidy up.
2047 <RECORD_TYPE>: Adjust call to dump_ada_structure and switch to aspect
2048 syntax.
2049 (print_constructor): Adjust call to pp_ada_tree_identifier.
2050 (print_destructor): Likewise.
2051 (dump_ada_declaration): Switch to aspect syntax.
2052 (dump_ada_structure): Likewise and tidy up. Replace display_convention
2053 parameter with nested parameter.
2054 (dump_ads): Emit pragma Ada_2012 in lieu of pragma Ada_2005.
2055 (dump_ada_specs): Do not delete overloaded_names table.
2056
2057 2018-07-06 Peter Bergner <bergner@linux.ibm.com>
2058
2059 PR target/86324
2060 * c-attribs.c (handle_mode_attribute): Call translate_mode_attribute
2061 target hook.
2062
2063 2018-07-05 Nathan Sidwell <nathan@acm.org>
2064
2065 * c-lex.c (fe_file_change): Check SYSTEM_IMPLICIT_EXTERN_C not
2066 NO_IMPLICIT_EXTERN_C.
2067
2068 2018-06-28 Martin Liska <mliska@suse.cz>
2069
2070 * cppspec.c: Include opt-suggestions.h.
2071
2072 2018-06-20 Chung-Lin Tang <cltang@codesourcery.com>
2073 Thomas Schwinge <thomas@codesourcery.com>
2074 Cesar Philippidis <cesar@codesourcery.com>
2075
2076 * c-pragma.h (enum pragma_omp_clause): Add
2077 PRAGMA_OACC_CLAUSE_{FINALIZE,IF_PRESENT}. Remove
2078 PRAGMA_OACC_CLAUSE_PRESENT_OR_{COPY,COPYIN,COPYOUT,CREATE}.
2079
2080 2018-06-20 Jakub Jelinek <jakub@redhat.com>
2081
2082 PR c++/86210
2083 * c-common.c (check_nonnull_arg): Use fold_for_warn. Adjust obsolete
2084 comment.
2085
2086 2018-06-18 Martin Sebor <msebor@redhat.com>
2087
2088 PR middle-end/85602
2089 * c-warn.c (sizeof_pointer_memaccess_warning): Check for attribute
2090 nonstring.
2091
2092 2018-06-16 Kugan Vivekanandarajah <kuganv@linaro.org>
2093
2094 * c-common.c (c_common_truthvalue_conversion): Handle ABSU_EXPR.
2095
2096 2018-06-13 Jason Merrill <jason@redhat.com>
2097
2098 * c-opts.c (c_common_post_options): Warn about useless -Wabi.
2099 (c_common_handle_option) [OPT_Wabi_]: Remove flag_abi_compat_version
2100 handling.
2101
2102 PR c++/86094 - wrong code with defaulted move ctor.
2103 * c-opts.c (c_common_post_options): Bump the current ABI version to
2104 13. Set warn_abi_version and flag_abi_compat_version to the current
2105 version rather than 0. Fix defaulting flag_abi_compat_version from
2106 warn_abi_version.
2107
2108 2018-06-12 Martin Sebor <msebor@redhat.com>
2109
2110 PR c/85931
2111 * c-warn.c (sizeof_pointer_memaccess_warning): Avoid warning when
2112 sizeof source and destination yields the same value.
2113
2114 2018-06-12 Martin Liska <mliska@suse.cz>
2115
2116 * c.opt: Make MPX-related options as Deprecated.
2117
2118 2018-06-08 David Malcolm <dmalcolm@redhat.com>
2119
2120 * c-pretty-print.c (c_pretty_printer::statement): Use TDF_NONE
2121 rather than 0.
2122
2123 2018-06-08 Martin Liska <mliska@suse.cz>
2124
2125 * c-attribs.c (handle_bnd_variable_size_attribute): Remove support
2126 for MPX (macros, related functions, fields in cgraph_node, ...).
2127 (handle_bnd_legacy): Likewise.
2128 (handle_bnd_instrument): Likewise.
2129 * c.opt: Likewise.
2130
2131 2018-06-06 Jakub Jelinek <jakub@redhat.com>
2132
2133 PR c++/86068
2134 * c-cppbuiltin.c (c_cpp_builtins): Fix a typo, set
2135 __cpp_transactional_memory to 201500 instead of 210500.
2136
2137 2018-06-06 Jason Merrill <jason@redhat.com>
2138
2139 PR c++/85710 - ICE with -Wmemset-elt-size.
2140 * c-warn.c (warn_for_memset): Don't crash on incomplete element type.
2141
2142 2018-06-01 Jason Merrill <jason@redhat.com>
2143
2144 * c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_deduction_guides to
2145 201703.
2146
2147 2018-06-01 Eric Botcazou <ebotcazou@adacore.com>
2148
2149 * c-ada-spec.c (dump_ada_declaration) <TYPE_DECL>: Generate a forward
2150 declaration for a typedef independently of whether the declaration of
2151 the subtype is generated.
2152
2153 2018-05-31 Martin Sebor <msebor@redhat.com>
2154
2155 PR c/82063
2156 * c.opt (-Wno-alloc-size-larger-than): New option.
2157
2158 2018-04-22 David Pagan <dave.pagan@oracle.com>
2159
2160 PR c/55976
2161 * c-opts.c (c_common_post_options): Set default for warn_return_type
2162 for C++/C++ with ObjC extensions only. For C, makes it possible to
2163 differentiate between default (no option), -Wreturn-type, and
2164 -Wno-return-type.
2165
2166 2018-05-29 Jason Merrill <jason@redhat.com>
2167
2168 * c.opt (Winit-list-lifetime): New flag.
2169
2170 2018-05-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
2171
2172 * c-lex.c (get_fileinfo): Use splay_tree_compare_strings and
2173 splay_tree_delete_pointers.
2174
2175 2018-05-26 Jakub Jelinek <jakub@redhat.com>
2176
2177 PR bootstrap/85921
2178 * c-warn.c (diagnose_mismatched_attributes): Remove unnecessary
2179 noinline variable to workaround broken kernel headers.
2180
2181 2018-05-18 Jason Merrill <jason@redhat.com>
2182
2183 * c.opt (Wdeprecated-copy): New flag.
2184
2185 2018-05-17 Martin Liska <mliska@suse.cz>
2186
2187 * c-warn.c (overflow_warning): Do not use
2188 space in between 'G_' and '('.
2189
2190 2018-05-09 Jason Merrill <jason@redhat.com>
2191
2192 * c-common.c (valid_array_size_p): Add complain parameter.
2193 * c-common.h: ...which defaults to true.
2194
2195 2018-05-11 Jakub Jelinek <jakub@redhat.com>
2196
2197 PR c/85696
2198 * c-omp.c (c_omp_predetermined_sharing): Return
2199 OMP_CLAUSE_DEFAULT_SHARED for artificial vars with integral type.
2200
2201 2018-05-11 Martin Liska <mliska@suse.cz>
2202
2203 PR sanitizer/85556
2204 * c-attribs.c (handle_no_sanitize_attribute): Iterate all
2205 TREE_LIST values.
2206
2207 2018-05-10 Jakub Jelinek <jakub@redhat.com>
2208
2209 PR c++/85662
2210 * c-common.h (fold_offsetof_1): Removed.
2211 (fold_offsetof): Add TYPE argument defaulted to size_type_node and
2212 CTX argument defaulted to ERROR_MARK.
2213 * c-common.c (fold_offsetof_1): Renamed to ...
2214 (fold_offsetof): ... this. Remove wrapper function. Add TYPE
2215 argument, convert the pointer constant to TYPE and use size_binop
2216 with PLUS_EXPR instead of fold_build_pointer_plus if type is not
2217 a pointer type. Adjust recursive calls.
2218
2219 2018-05-10 Eric Botcazou <ebotcazou@adacore.com>
2220
2221 PR c++/85400
2222 * c-attribs.c (handle_visibility_attribute): Do not set no_add_attrs.
2223
2224 2018-05-07 Nathan Sidwell <nathan@acm.org>
2225
2226 * c.opt (ffor-scope): Remove functionality, issue warning.
2227
2228 2018-05-03 Nathan Sidwell <nathan@acm.org>
2229
2230 * c.opt (ffriend-injection): Remove functionality, issue warning.
2231
2232 2018-05-01 David Malcolm <dmalcolm@redhat.com>
2233
2234 PR c/84258
2235 * c-format.c (struct format_check_results): Add field
2236 "number_non_char".
2237 (check_format_info): Initialize it, and warn if encountered.
2238 (check_format_arg): Distinguish between wide char and
2239 everything else when detecting arrays of non-char.
2240
2241 2018-04-30 David Malcolm <dmalcolm@redhat.com>
2242
2243 * c-format.c (get_corrected_substring): Update for
2244 location_get_source_line returning a char_span. Use a char_span
2245 when handling the prefix of the correction.
2246 * c-indentation.c (get_visual_column): Update for
2247 location_get_source_line returning a char_span.
2248 (get_first_nws_vis_column): Likewise.
2249
2250 2018-03-29 David Malcolm <dmalcolm@redhat.com>
2251
2252 PR c++/84269
2253 * known-headers.cc (get_stdlib_header_for_name): Add various names
2254 from <assert.h>, <string.h>, and <memory.h>; add more names from
2255 <stdio.h>.
2256
2257 2018-03-27 Jakub Jelinek <jakub@redhat.com>
2258
2259 PR c++/85061
2260 * c-common.c (fold_offsetof_1) <case COMPOUND_EXPR>: Assert that
2261 get_base_address of the second operand is a VAR_P, rather than the
2262 operand itself, and use gcc_checking_assert instead of gcc_assert.
2263
2264 2018-03-23 Marek Polacek <polacek@redhat.com>
2265
2266 PR c++/85045
2267 * c-pretty-print.c (c_pretty_printer::multiplicative_expression)
2268 <case RDIV_EXPR>: Tweak condition.
2269
2270 2018-03-20 Eric Botcazou <ebotcazou@adacore.com>
2271
2272 * c-ada-spec.c (pp_ada_tree_identifier): Deal specifically with _Bool.
2273
2274 2018-03-16 Jakub Jelinek <jakub@redhat.com>
2275
2276 PR c/84909
2277 * c-warn.c (conversion_warning): Replace "to to" with "to" in
2278 diagnostics.
2279
2280 PR c/84910
2281 * c-warn.c (diagnose_mismatched_attributes): Remove trailing space from
2282 diagnostics.
2283
2284 2018-03-16 Richard Biener <rguenther@suse.de>
2285
2286 PR c/84873
2287 * c-gimplify.c (c_gimplify_expr): Revert previous change. Instead
2288 unshare the possibly folded expression.
2289
2290 2018-03-15 Richard Biener <rguenther@suse.de>
2291
2292 PR c/84873
2293 * c-gimplify.c (c_gimplify_expr): Do not fold expressions.
2294
2295 2018-03-13 Martin Sebor <msebor@redhat.com>
2296
2297 PR tree-optimization/84725
2298 * c-attribs.c (handle_nonstring_attribute): Allow attribute nonstring
2299 with all three narrow character types, including their qualified forms.
2300
2301 2018-03-12 Martin Sebor <msebor@redhat.com>
2302
2303 PR tree-optimization/83456
2304 * c-common.c (check_function_restrict): Return bool.
2305 Restore checking of bounded built-in functions.
2306 (check_function_arguments): Also return the result
2307 of warn_for_restrict.
2308 * c-common.c (check_function_restrict): Return bool.
2309 * c-warn.c (warn_for_restrict): Return bool.
2310
2311 2018-03-02 Marek Polacek <polacek@redhat.com>
2312
2313 PR c++/84171
2314 * c-warn.c (warn_for_sign_compare): Bail out if any of the operands
2315 is erroneous.
2316
2317 2018-03-02 Thomas Schwinge <thomas@codesourcery.com>
2318
2319 * c-attribs.c (c_common_attribute_table): Remove "cilk simd
2320 function".
2321
2322 2018-03-01 Marek Polacek <polacek@redhat.com>
2323
2324 PR c++/84639
2325 * c-attribs.c (common_handle_aligned_attribute): Don't use invalid
2326 alignment in computation.
2327
2328 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
2329
2330 * c-ada-spec.c (dump_ada_node) <NULLPTR_TYPE>: New case.
2331 <REAL_TYPE>: Deal specifically with _Float128/__float128.
2332
2333 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
2334
2335 * c-ada-spec.c (dump_ada_double_name) <ENUMERAL_TYPE>: New case.
2336 (is_char_array): Take a type instead of a declaration.
2337 (dump_ada_array_type): Likewise.
2338 (is_simple_enum): Minor tweak.
2339 (dump_ada_enum_type): New function extracted from...
2340 (dump_ada_node) <ENUMERAL_TYPE>: ...here. Invoke it.
2341 <INTEGER_TYPE>: Remove unreachable code.
2342 <RECORD_TYPE>: Likewise. Minor tweaks.
2343 (dump_nested_type) <ARRAY_TYPE>: Adjust to above changes.
2344 <ENUMERAL_TYPE>: New case.
2345 <RECORD_TYPE>: Factor out common code.
2346 (dump_ada_declaration) <ARRAY_TYPE>: Adjust to above changes.
2347 Minor tweaks. Deal with enumeral types.
2348 (dump_ada_structure): Minor tweaks.
2349
2350 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
2351
2352 * c-ada-spec.c (dump_ada_node) <POINTER_TYPE>: Do not use generic
2353 address for incomplete structures.
2354 (dump_forward_type): Do not bail out for incomplete structures.
2355 (dump_ada_declaration): Do not special-case incomplete structures
2356 for subtypes. Dump them as null records for types.
2357
2358 2018-02-28 Eric Botcazou <ebotcazou@adacore.com>
2359
2360 * c-ada-spec.c (dump_ada_import): Use boolean and fix formatting.
2361 (is_char_array): Fix formatting.
2362 (dump_template_types): Likewise.
2363 (dump_generic_ada_node): Rename into...
2364 (dump_ada_node): ...this.
2365 <POINTER_TYPE>: Remove superfluous space. Use generic address for
2366 incomplete structures and not for empty structures. Do not use it
2367 when forward declarations are needed.
2368 (dump_forward_type): New function.
2369 (dump_nested_types): Remove FORWARD parameter. Do not consider
2370 TREE_VISITED and do not generate a forward declaration. Only dump
2371 original nested types for nested declaration.
2372 (dump_nested_type) <POINTER_TYPE>: Call dump_forward_type.
2373 <ARRAY_TYPE>: Likewise if the component type is an anonymous pointer.
2374 <RECORD_TYPE>: Do not consider TREE_VISITED.
2375 (dump_ada_declaration): Use booleans and fix formatting throughout.
2376 <TYPE_DECL>: Skip incomplete structures and not empty structures.
2377 Call dump_forward_type instead of dump_nested_types for a typedef.
2378 Remove superfluous check and adjust call to dump_nested_types.
2379 <POINTER_TYPE>: Call dump_forward_type and fall through.
2380 (dump_ada_struct_decl): Rename into...
2381 (dump_ada_structure): ...this. Do not special-case empty structures.
2382
2383 2018-02-27 Martin Sebor <msebor@redhat.com>
2384
2385 PR c++/83871
2386 * c.opt (-Wmissing-attributes): New option.
2387
2388 2018-02-21 Martin Liska <mliska@suse.cz>
2389
2390 * c.opt (Wcatch-value=): Add IntegerRange.
2391
2392 2018-02-15 Jason Merrill <jason@redhat.com>
2393
2394 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_deduction_guides.
2395
2396 2018-02-09 Nathan Sidwell <nathan@acm.org>
2397
2398 PR c/84293
2399 * c-common.h (strict_aliasing_warning): Drop OTYPE arg, insert LOC
2400 arg.
2401 * c-warn.c (strict_aliasing_warning): Drop OTYPE arg, require LOC
2402 arg. Adjust.
2403
2404 2018-02-09 Martin Sebor <msebor@redhat.com>
2405
2406 PR lto/84212
2407 * c.opt (-Wstringop-overflow, -Warray-bounds): Add LTO.
2408 (-Walloc-size-larger-than, -Wformat-truncation=): Same.
2409 (-Wmaybe-uninitialized, -Wnonnull, -Wrestrict): Same.
2410 (-Wstrict-overflow, -Wsuggest-attribute): Same.
2411 (-Wuninitialized): Same.
2412
2413 2018-02-09 Eric Botcazou <ebotcazou@adacore.com>
2414
2415 * c-ada-spec.c (dump_ada_declaration): Do not generate the 'constant'
2416 keyword for components.
2417
2418 2018-02-02 Paolo Carlini <paolo.carlini@oracle.com>
2419
2420 * c-common.h (DECL_UNNAMED_BIT_FIELD): New.
2421
2422 2018-02-02 Julia Koval <julia.koval@intel.com>
2423
2424 * c-common.h (omp_clause_mask): Move to wide_int_bitmask.h.
2425
2426 2018-01-29 Marek Polacek <polacek@redhat.com>
2427
2428 PR c/83966
2429 * c-format.c (check_function_format): Check current_function_decl.
2430
2431 2018-01-27 Jakub Jelinek <jakub@redhat.com>
2432
2433 * c-cppbuiltin.c (c_cpp_builtins): Use ggc_strdup for the fp_suffix
2434 argument.
2435 (LAZY_HEX_FP_VALUES_CNT): Define.
2436 (lazy_hex_fp_values): Allow up to LAZY_HEX_FP_VALUES_CNT lazy hex fp
2437 values rather than just 12.
2438 (builtin_define_with_hex_fp_value): Likewise.
2439
2440 2018-01-18 Boris Kolpackov <boris@codesynthesis.com>
2441
2442 PR other/70268
2443 * c.opt (-fmacro-prefix-map): New option.
2444 * c-opts.c (c_common_handle_option): Handle it.
2445 * c-lex.c (init_c_lex): Set remap_filename cpp callback.
2446 * c-ppoutput.c (init_pp_output): Likewise.
2447
2448 2018-01-17 David Malcolm <dmalcolm@redhat.com>
2449
2450 PR c++/83814
2451 * c-common.c (fold_for_warn): Move to c/c-fold.c and cp/expr.c.
2452
2453 2018-01-10 Eric Botcazou <ebotcazou@adacore.com>
2454
2455 * c-ada-spec.c (dump_number): Add FLOAT_P parameter.
2456 Skip 'f' and 'F' characters if it is true.
2457 (store_ada_macro): Minor tweak.
2458 (dump_ada_macros) <CPP_COMMENT>: Likewise.
2459 <CPP_WSTRING>: Likewise.
2460 <CPP_STRING>: Output '&' in the buffer if not the first string.
2461 <CPP_NUMBER>: Adjust calls to dump_number.
2462
2463 2018-01-10 David Malcolm <dmalcolm@redhat.com>
2464
2465 PR c++/43486
2466 * c-common.c: Include "selftest.h".
2467 (get_atomic_generic_size): Perform the test for integral type
2468 before the range test for any integer constant, fixing indentation
2469 of braces. Call fold_for_warn before testing for an INTEGER_CST.
2470 (reject_gcc_builtin): Strip any location wrapper from EXPR.
2471 (selftest::test_fold_for_warn): New function.
2472 (selftest::c_common_c_tests): New function.
2473 (selftest::c_family_tests): Call it, and
2474 selftest::c_pretty_print_c_tests.
2475 * c-common.h (selftest::c_pretty_print_c_tests): New decl.
2476 * c-format.c (check_format_arg): Convert VAR_P check to a
2477 fold_for_warn.
2478 * c-pretty-print.c: Include "selftest.h".
2479 (pp_c_cast_expression): Don't print casts for location wrappers.
2480 (selftest::assert_c_pretty_printer_output): New function.
2481 (ASSERT_C_PRETTY_PRINTER_OUTPUT): New macro.
2482 (selftest::test_location_wrappers): New function.
2483 (selftest::c_pretty_print_c_tests): New function.
2484 * c-warn.c (warn_for_memset): Call fold_for_warn on the arguments.
2485
2486 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
2487 Alan Hayward <alan.hayward@arm.com>
2488 David Sherwood <david.sherwood@arm.com>
2489
2490 * c-common.c (c_common_type_for_mode): Handle MODE_VECTOR_BOOL.
2491
2492 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
2493 Alan Hayward <alan.hayward@arm.com>
2494 David Sherwood <david.sherwood@arm.com>
2495
2496 * c-ubsan.c (ubsan_instrument_shift): Treat GET_MODE_BITSIZE
2497 as polynomial.
2498
2499 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
2500 Alan Hayward <alan.hayward@arm.com>
2501 David Sherwood <david.sherwood@arm.com>
2502
2503 * c-common.c (vector_types_convertible_p, c_build_vec_perm_expr)
2504 (convert_vector_to_array_for_subscript): Handle polynomial
2505 TYPE_VECTOR_SUBPARTS.
2506 (c_common_type_for_mode): Check valid_vector_subparts_p.
2507 * c-pretty-print.c (pp_c_initializer_list): Handle polynomial
2508 VECTOR_CST_NELTS.
2509
2510 2018-01-03 Jakub Jelinek <jakub@redhat.com>
2511
2512 Update copyright years.
2513
2514 2017-12-22 Mike Stump <mikestump@comcast.net>
2515 Eric Botcazou <ebotcazou@adacore.com>
2516
2517 * c-pragma.c (init_pragma): Register pragma GCC unroll.
2518 * c-pragma.h (enum pragma_kind): Add PRAGMA_UNROLL.
2519
2520 2017-12-22 Alexandre Oliva <aoliva@redhat.com>
2521
2522 PR debug/83527
2523 PR debug/83419
2524 * c-semantics.c (only_debug_stmts_after_p): New.
2525 (pop_stmt_list): Clear side effects in debug-only stmt list.
2526 Check for single nondebug stmt followed by debug stmts only.
2527
2528 2017-12-21 Alexandre Oliva <aoliva@redhat.com>
2529
2530 PR debug/83419
2531 * c-semantics.c (pop_stmt_list): Propagate side effects from
2532 single nondebug stmt to container list.
2533
2534 2017-12-19 Jakub Jelinek <jakub@redhat.com>
2535
2536 * known-headers.cc (get_stdlib_header_for_name): Replace Yoda
2537 conditions with typical order conditions.
2538
2539 2017-12-18 Marek Polacek <polacek@redhat.com>
2540
2541 * c-warn.c (warn_logical_operator): Return early if -Wlogical-op is
2542 not in effect.
2543
2544 2017-12-17 Martin Sebor <msebor@redhat.com>
2545
2546 * c-attribs.c (common_handle_aligned_attribute): Avoid issuing
2547 an error for attribute warn_if_not_aligned.
2548
2549 2017-12-16 Martin Sebor <msebor@redhat.com>
2550
2551 PR tree-optimization/78918
2552 * c-common.c (check_function_restrict): Avoid checking built-ins.
2553 * c.opt (-Wrestrict): Include in -Wall.
2554
2555 2017-12-15 Jakub Jelinek <jakub@redhat.com>
2556
2557 * c-attribs.c (c_common_attribute_table,
2558 c_common_format_attribute_table): Swap affects_type_identity
2559 and handler fields, adjust comments.
2560
2561 2017-12-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
2562
2563 * c.opt (Wcast-function-type): New warning option.
2564 * c-lex.c (get_fileinfo): Avoid warning.
2565 * c-ppoutput.c (scan_translation_unit_directives_only): Remove cast.
2566
2567 2017-12-14 Qing Zhao <qing.zhao@oracle.com>
2568
2569 PR middle_end/79538
2570 * c-cppbuiltin.c (builtin_define_with_hex_fp_value):
2571 Adjust the size of buf1 and buf2, add a new buf to avoid
2572 format-overflow warning.
2573
2574 2017-12-12 Alexandre Oliva <aoliva@redhat.com>
2575
2576 * c-semantics.c (pop_stmt_list): Move begin stmt marker into
2577 subsequent statement list.
2578
2579 2017-12-07 Martin Sebor <msebor@redhat.com>
2580
2581 PR c/81544
2582 PR c/81566
2583 * c-attribs.c (attr_aligned_exclusions): New array.
2584 (attr_alloc_exclusions, attr_cold_hot_exclusions): Same.
2585 (attr_common_exclusions, attr_const_pure_exclusions): Same.
2586 (attr_gnu_inline_exclusions, attr_inline_exclusions): Same.
2587 (attr_noreturn_exclusions, attr_returns_twice_exclusions): Same.
2588 (attr_warn_unused_result_exclusions): Same.
2589 (handle_hot_attribute, handle_cold_attribute): Simplify.
2590 (handle_const_attribute): Warn on function returning void.
2591 (handle_pure_attribute): Same.
2592 (handle_aligned_attribute): Diagnose conflicting attribute
2593 specifications.
2594 * c-warn.c (diagnose_mismatched_attributes): Simplify.
2595
2596 2017-12-06 David Malcolm <dmalcolm@redhat.com>
2597
2598 PR c/83236
2599 * c-common.c (selftest::c_family_tests): Call
2600 selftest::c_spellcheck_cc_tests.
2601 * c-common.h (selftest::c_spellcheck_cc_tests): New decl.
2602 * c-spellcheck.cc: Include "selftest.h".
2603 (name_reserved_for_implementation_p): New function.
2604 (should_suggest_as_macro_p): New function.
2605 (find_closest_macro_cpp_cb): Move the check for NT_MACRO to
2606 should_suggest_as_macro_p and call it.
2607 (selftest::test_name_reserved_for_implementation_p): New function.
2608 (selftest::c_spellcheck_cc_tests): New function.
2609 * c-spellcheck.h (name_reserved_for_implementation_p): New decl.
2610
2611 2017-12-06 David Malcolm <dmalcolm@redhat.com>
2612
2613 * c-spellcheck.cc: New file, taken from macro-handling code in
2614 spellcheck-tree.c.
2615 * c-spellcheck.h: New file, taken from macro-handling code in
2616 spellcheck-tree.h.
2617
2618 2017-12-01 Jakub Jelinek <jakub@redhat.com>
2619
2620 * c-attribs.c (c_common_attribute_table): Remove "cilk simd function"
2621 attribute.
2622 (handle_simd_attribute): Don't check for "cilk simd function"
2623 attribute. Reindent, formatting changes.
2624
2625 2017-11-30 Julia Koval <julia.koval@intel.com>
2626
2627 * c-common.h (inv_list): Remove.
2628
2629 2017-11-28 Jakub Jelinek <jakub@redhat.com>
2630
2631 PR sanitizer/81275
2632 * c-common.c (c_switch_covers_all_cases_p_1,
2633 c_switch_covers_all_cases_p): New functions.
2634 * c-common.h (c_switch_covers_all_cases_p): Declare.
2635
2636 2017-11-28 Julia Koval <julia.koval@intel.com>
2637 Sebastian Peryt <sebastian.peryt@intel.com>
2638
2639 * array-notation-common.c: Delete.
2640 * c-cilkplus.c: Ditto.
2641 * c-common.c (_Cilk_spawn, _Cilk_sync, _Cilk_for): Remove.
2642 * c-common.def (ARRAY_NOTATION_REF): Remove.
2643 * c-common.h (RID_CILK_SPAWN, build_array_notation_expr,
2644 build_array_notation_ref, C_ORT_CILK, c_check_cilk_loop,
2645 c_validate_cilk_plus_loop, cilkplus_an_parts,
2646 cilk_ignorable_spawn_rhs_op,
2647 cilk_recognize_spawn): Remove.
2648 * c-gimplify.c (CILK_SPAWN_STMT): Remove.
2649 * c-omp.c: Remove CILK_SIMD check.
2650 * c-pragma.c: Ditto.
2651 * c-pragma.h: Remove CILK related pragmas.
2652 * c-pretty-print.c (c_pretty_printer::postfix_expression): Remove
2653 ARRAY_NOTATION_REF condition.
2654 (c_pretty_printer::expression): Ditto.
2655 * c.opt (fcilkplus): Remove.
2656 * cilk.c: Delete.
2657
2658 2017-11-21 Marc Glisse <marc.glisse@inria.fr>
2659
2660 * c-pretty-print.c (pp_c_additive_expression,
2661 c_pretty_printer::expression): Handle POINTER_DIFF_EXPR.
2662
2663 2017-11-21 Jakub Jelinek <jakub@redhat.com>
2664
2665 * c-common.c (get_nonnull_operand): Use tree_to_uhwi.
2666
2667 PR c++/83059
2668 * c-common.c (get_atomic_generic_size): Use TREE_INT_CST_LOW
2669 instead of tree_to_uhwi, formatting fix.
2670
2671 2017-11-20 David Malcolm <dmalcolm@redhat.com>
2672
2673 PR c/81404
2674 * known-headers.cc: New file, based on material from c/c-decl.c.
2675 (suggest_missing_header): Copied as-is.
2676 (get_stdlib_header_for_name): New, based on get_c_name_hint but
2677 heavily edited to add C++ support. Add some knowledge about
2678 <limits.h>, <stdint.h>, and <wchar.h>.
2679 * known-headers.h: Likewise.
2680
2681 2017-11-20 David Malcolm <dmalcolm@redhat.com>
2682
2683 * c-common.h (enum lookup_name_fuzzy_kind): Move to name-hint.h.
2684 (lookup_name_fuzzy): Likewise. Convert return type from
2685 const char * to name_hint. Add location_t param.
2686 * name-hint.h: New header.
2687
2688 2017-11-19 Jakub Jelinek <jakub@redhat.com>
2689
2690 PR c/66618
2691 PR c/69960
2692 * c-common.h (c_fully_fold): Add LVAL argument defaulted to false.
2693
2694 2017-11-16 Joseph Myers <joseph@codesourcery.com>
2695
2696 * c.opt (-std=c17, std=gnu17, -std=iso9899:2017): Refer to 2018
2697 expected publication date of C17.
2698 (-std=c18, -std=gnu18, -std=iso9899:2018): New option aliases.
2699
2700 2017-11-15 Joseph Myers <joseph@codesourcery.com>
2701
2702 PR c/81156
2703 * c-common.c (c_common_reswords): Add __builtin_tgmath.
2704 * c-common.h (enum rid): Add RID_BUILTIN_TGMATH.
2705
2706 2017-11-10 Martin Sebor <msebor@redhat.com>
2707
2708 PR c/81117
2709 * c-common.c (catenate_strings): Use memcpy instead of strncpy.
2710 * c-warn.c (sizeof_pointer_memaccess_warning): Handle arrays.
2711 * c.opt (-Wstringop-truncation): New option.
2712
2713 2017-11-06 Martin Liska <mliska@suse.cz>
2714
2715 PR middle-end/82404
2716 * c-opts.c (c_common_post_options): Set -Wreturn-type for C++
2717 FE.
2718 * c.opt: Set default value of warn_return_type.
2719
2720 2017-10-31 David Malcolm <dmalcolm@redhat.com>
2721
2722 * c-common.c (binary_op_error): Update for renaming of
2723 error_at_rich_loc.
2724 (c_parse_error): Likewise.
2725 * c-warn.c (warn_logical_not_parentheses): Likewise for
2726 renaming of inform_at_rich_loc.
2727 (warn_for_restrict): Likewise for renaming of
2728 warning_at_rich_loc_n.
2729
2730 2017-10-30 Joseph Myers <joseph@codesourcery.com>
2731
2732 * c.opt (std=c17, std=gnu17, std=iso9899:2017): New options.
2733 * c-opts.c (set_std_c17): New function.
2734 (c_common_init_options): Use gnu17 as default C version.
2735 (c_common_handle_option): Handle -std=c17 and -std=gnu17.
2736
2737 2017-10-27 Michael Meissner <meissner@linux.vnet.ibm.com>
2738
2739 * c-cppbuiltin.c (mode_has_fma): Add support for PowerPC KFmode.
2740 (c_cpp_builtins): If a machine has a fast fma _Float<N> and
2741 _Float<N>X variant, define __FP_FAST_FMA<N> and/or
2742 __FP_FAST_FMA<N>X.
2743
2744 2017-10-23 Marek Polacek <polacek@redhat.com>
2745
2746 PR c/82681
2747 * c-warn.c (warnings_for_convert_and_check): Fix typos.
2748
2749 2017-10-19 Eric Botcazou <ebotcazou@adacore.com>
2750
2751 * c-common.c (check_builtin_function_arguments): Also check arguments
2752 of __builtin_alloca_with_align_and_max.
2753
2754 2017-10-17 David Malcolm <dmalcolm@redhat.com>
2755
2756 * c-format.c (format_warning_at_char): Pass UNKNOWN_LOCATION
2757 rather than NULL to format_warning_va.
2758 (check_format_types): Likewise when calling format_type_warning.
2759 Remove code to extract source_ranges and source_range * in favor
2760 of just a location_t.
2761 (format_type_warning): Convert source_range * param to a
2762 location_t.
2763
2764 2017-10-13 Jakub Jelinek <jakub@redhat.com>
2765
2766 * c-gimplify.c (c_gimplify_expr): Handle [LR]ROTATE_EXPR like
2767 [LR]SHIFT_EXPR.
2768
2769 2017-10-12 David Malcolm <dmalcolm@redhat.com>
2770
2771 * c-common.c (enum missing_token_insertion_kind): New enum.
2772 (get_missing_token_insertion_kind): New function.
2773 (maybe_suggest_missing_token_insertion): New function.
2774 * c-common.h (maybe_suggest_missing_token_insertion): New decl.
2775
2776 2017-10-11 Nathan Sidwell <nathan@acm.org>
2777
2778 * c-opts.c (add_prefixed_path): Change chain to incpath_kind.
2779 (c_common_handle_option): Update incpath_kind names.
2780
2781 2017-10-11 Martin Liska <mliska@suse.cz>
2782
2783 PR sanitizer/82490
2784 * c-attribs.c (handle_no_sanitize_attribute): Report directly
2785 Wattributes warning.
2786
2787 2017-10-10 Richard Sandiford <richard.sandiford@linaro.org>
2788
2789 * c-ada-spec.c (dump_generic_ada_node): Use wi::to_wide when
2790 operating on trees as wide_ints.
2791 * c-common.c (pointer_int_sum): Likewise.
2792 * c-pretty-print.c (pp_c_integer_constant): Likewise.
2793 * c-warn.c (match_case_to_enum_1): Likewise.
2794 (c_do_switch_warnings): Likewise.
2795 (maybe_warn_shift_overflow): Likewise.
2796
2797 2017-10-10 Jakub Jelinek <jakub@redhat.com>
2798
2799 PR c/82437
2800 * c-warn.c (warn_tautological_bitwise_comparison): Use wi::to_wide
2801 instead of wide_int::from.
2802
2803 2017-10-06 Jakub Jelinek <jakub@redhat.com>
2804
2805 PR c/82437
2806 * c-warn.c (warn_tautological_bitwise_comparison): Instead of
2807 using to_widest use wide_int with the larger of the two precisions.
2808
2809 2017-10-05 Bernd Edlinger <bernd.edlinger@hotmail.de>
2810
2811 * c-pretty-print.c (pp_c_parameter_type_list): Print ... for variadic
2812 functions.
2813
2814 2017-10-02 Richard Sandiford <richard.sandiford@linaro.org>
2815
2816 * c-warn.c (warn_tautological_bitwise_comparison): Use wi::to_widest
2817 when combining the original unconverted comparison operands.
2818
2819 2017-09-29 Jakub Jelinek <jakub@redhat.com>
2820
2821 * c-attribs.c (handle_noipa_attribute): Don't add "stack_protect"
2822 attribute.
2823
2824 2017-09-29 Eric Botcazou <ebotcazou@adacore.com>
2825
2826 * c-ada-spec.c (to_ada_name): Add index parameter.
2827 (pp_ada_tree_identifier): Likewise.
2828 (dump_ada_macros): Adjust call to to_ada_name.
2829 (struct overloaded_name_hash): New type.
2830 (struct overloaded_name_hasher): Likewise.
2831 (overloaded_names): New hash table.
2832 (compute_overloading_index): New function.
2833 (dump_ada_decl_name): Call it and pass the result to
2834 pp_ada_tree_identifier.
2835 (dump_ada_double_name): Adjust calls to pp_ada_tree_identifier.
2836 (dump_ada_function_declaration): Likewise.
2837 (dump_generic_ada_node): Likewise.
2838 (print_constructor): Likewise.
2839 (print_destructor): Likewise.
2840 (dump_ada_specs): Delete overloaded_names table.
2841
2842 2017-09-29 Eric Botcazou <ebotcazou@adacore.com>
2843
2844 * c-ada-spec.c (max_ada_macros): Move around.
2845 (store_ada_macro_index): Likewise.
2846 (source_file): Rename into...
2847 (macro_source_file): ...this.
2848 (count_ada_macro): Move around.
2849 (store_ada_macro): Likewise.
2850 (compare_macro): Likewise.
2851 (print_ada_macros): Merge in...
2852 (dump_ada_macros): ...this.
2853 (source_file_base): Rename into...
2854 (current_source_file): ...this.
2855 (print_comment): Move around.
2856 (dump_ada_nodes): Call dump_ada_declaration directly.
2857 (struct with): Change type of limited field to bool.
2858 (append_withs): Change type of limited_access parameter to bool.
2859 (pp_ada_tree_identifie): Likewise.
2860 (dump_ada_decl_nam): Likewise.
2861 (dump_generic_ada_node): Likewise. Do not print the return type.
2862 (to_ada_name): Change type of space_found parameter to bool.
2863 (dump_ada_function_declaration): Return void and change type of
2864 parameters to bool. Also print the return type for a function.
2865 (print_ada_methods): Rename into...
2866 (dump_ada_methods): ...this.
2867 (print_ada_declaration): Rename into ...
2868 (dump_ada_declaration): ...this. Do not print the return type.
2869 (print_ada_struct_decl): Rename into...
2870 (dump_ada_struct_decl): ...this.
2871
2872 2017-09-29 Jakub Jelinek <jakub@redhat.com>
2873
2874 * c-attribs.c (handle_packed_attribute): Test DECL_C_BIT_FIELD
2875 rather than DECL_INITIAL.
2876 (common_handle_aligned_attribute): Likewise.
2877
2878 2017-09-20 Alexandre Oliva <aoliva@redhat.com>
2879
2880 * c.opt (gen-decls): Add RejectNegative.
2881
2882 2017-09-15 Andrew Sutton <andrew.n.sutton@gmail.com>
2883 Jakub Jelinek <jakub@redhat.com>
2884
2885 Add support for -std=c++2a.
2886 * c-common.h (cxx_dialect): Add cxx2a as a dialect.
2887 * opt.c: Add options for -std=c++2a and -std=gnu++2a.
2888 * c-opts.c (set_std_cxx2a): New.
2889 (c_common_handle_option): Set options when -std=c++2a is enabled.
2890 (c_common_post_options): Adjust comments.
2891 (set_std_cxx14, set_std_cxx17): Likewise.
2892
2893 2017-09-15 Eric Botcazou <ebotcazou@adacore.com>
2894
2895 * c-pragma.c (handle_pragma_scalar_storage_order): Expand on error
2896 message for non-uniform endianness and issue a warning in C++.
2897
2898 2017-09-15 Jakub Jelinek <jakub@redhat.com>
2899
2900 * c.opt (Wc++1z-compat): Change from option to undocumented alias.
2901 (Wc++17-compat): Change from undocumented alias to option.
2902 (Wnoexcept-type): Enable by Wc++17-compat instead of Wc++1z-compat,
2903 change C++1z to C++17 in description.
2904 (std=c++1z, std=gnu++1z): Change from option to undocumented
2905 deprecated alias.
2906 (std=c++17, std=gnu++17): Change from undocumented alias to option.
2907 Adjust description.
2908 * c-common.h (enum cxx_dialect): Rename cxx1z to cxx17.
2909 * c-opts.c (set_std_cxx1z): Rename to ...
2910 (set_std_cxx17): ... this.
2911 (c_common_handle_option): Rename OPT_std_c__1z to OPT_std_c__17
2912 and OPT_std_gnu__1z to OPT_std_gnu__17. Adjust set_std_cxx1z
2913 caller.
2914 (c_common_post_options): Use cxx17 instead of cxx1z. Adjust
2915 comments.
2916
2917 2017-09-12 H.J. Lu <hongjiu.lu@intel.com>
2918
2919 * c-attribs.c (common_handle_aligned_attribute): Don't warn
2920 function alignment if warn_if_not_aligned_p is true.
2921
2922 2017-09-12 Nathan Sidwell <nathan@acm.org>
2923
2924 * c-common.c (field_decl_cmp, resort_data, resort_field_decl_cmp,
2925 resort_sorted_fields): Move to c/c-decl.c.
2926 * c-common.h (field_decl_cmp, resort_sorted_fields): Delete.
2927 (struct sorted_fields_type): Move to c/c-lang.h.
2928
2929 2017-09-09 Jonathan Wakely <jwakely@redhat.com>
2930
2931 PR c++/81852
2932 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_threadsafe_static_init.
2933
2934 2017-09-04 Marek Polacek <polacek@redhat.com>
2935
2936 PR c/81783
2937 * c-warn.c (warn_tautological_bitwise_comparison): New function.
2938 (warn_tautological_cmp): Call it.
2939
2940 2017-09-01 Boris Kolpackov <boris@codesynthesis.com>
2941
2942 * c-opts.c (c_common_finish): Write dependency information even if
2943 there are errors.
2944
2945 2017-09-01 Jakub Jelinek <jakub@redhat.com>
2946
2947 PR c/81887
2948 * c-pragma.c (omp_pragmas): Move "ordered" entry from here to ...
2949 (omp_pragmas_simd): ... here.
2950 * c-omp.c (c_finish_omp_ordered): If clauses isn't simd clause alone,
2951 create new clauses list containing just simd clause.
2952
2953 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2954 Alan Hayward <alan.hayward@arm.com>
2955 David Sherwood <david.sherwood@arm.com>
2956
2957 * c-attribs.c (vector_mode_valid_p) Fold GET_MODE_INNER call
2958 into scalar_mode_supported_p call.
2959 (handle_mode_attribute): Update call to scalar_mode_supported_p.
2960
2961 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2962 Alan Hayward <alan.hayward@arm.com>
2963 David Sherwood <david.sherwood@arm.com>
2964
2965 * c-common.c (c_common_fixed_point_type_for_size): Use opt_scalar_mode
2966 for the mode iterator.
2967
2968 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2969 Alan Hayward <alan.hayward@arm.com>
2970 David Sherwood <david.sherwood@arm.com>
2971
2972 * c-lex.c (interpret_fixed): Use SCALAR_TYPE_MODE.
2973 * c-common.c (c_build_vec_perm_expr): Likewise.
2974
2975 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2976 Alan Hayward <alan.hayward@arm.com>
2977 David Sherwood <david.sherwood@arm.com>
2978
2979 * c-common.c (c_common_type_for_mode): Use as_a <scalar_int_mode>.
2980
2981 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2982 Alan Hayward <alan.hayward@arm.com>
2983 David Sherwood <david.sherwood@arm.com>
2984
2985 * c-attribs.c (handle_mode_attribute): Check for a scalar_int_mode
2986 before calling targetm.addr_space.valid_pointer_mode.
2987
2988 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2989 Alan Hayward <alan.hayward@arm.com>
2990 David Sherwood <david.sherwood@arm.com>
2991
2992 * c-cppbuiltin.c (c_cpp_builtins): Use opt_scalar_float_mode.
2993
2994 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
2995 Alan Hayward <alan.hayward@arm.com>
2996 David Sherwood <david.sherwood@arm.com>
2997
2998 * c-common.c (c_common_fixed_point_type_for_size): Use new mode
2999 iterators.
3000 * c-cppbuiltin.c (c_cpp_builtins): Likewise.
3001
3002 2017-08-30 Richard Sandiford <richard.sandiford@linaro.org>
3003 Alan Hayward <alan.hayward@arm.com>
3004 David Sherwood <david.sherwood@arm.com>
3005
3006 * c-cppbuiltin.c (mode_has_fma): Prefix mode names with E_ in
3007 case statements.
3008
3009 2017-08-29 Martin Liska <mliska@suse.cz>
3010
3011 PR other/39851
3012 * c-common.c (parse_optimize_options): Add argument to function
3013 call.
3014 * c-pragma.c (handle_pragma_diagnostic): Likewise.
3015
3016 2017-08-24 David Malcolm <dmalcolm@redhat.com>
3017
3018 * c-lex.c (interpret_float): Use token location
3019 when building an EXCESS_PRECISION_EXPR.
3020
3021 2017-08-21 David Malcolm <dmalcolm@redhat.com>
3022
3023 * c-common.c (check_function_arguments): Add "arglogs" param; pass
3024 it to check_function_format.
3025 * c-common.h (check_function_arguments): Add vec<location_t> *
3026 param.
3027 (check_function_format): Likewise.
3028 * c-format.c (struct format_check_context): Add field "arglocs".
3029 (check_function_format): Add param "arglocs"; pass it to
3030 check_format_info.
3031 (check_format_info): Add param "arglocs"; use it to initialize
3032 new field of format_ctx.
3033 (check_format_arg): Pass format_ctx->arglocs to new param of
3034 check_format_info_main.
3035 (class argument_parser): New field "arglocs".
3036 (argument_parser::argument_parser): Add "arglocs_" param and use
3037 it to initialize new field.
3038 (argument_parser::check_argument_type): Pass new arglocs field to
3039 check_format_types.
3040 (check_format_info_main): Add param "arglocs", and use it when
3041 constructing arg_parser.
3042 (check_format_types): Add param "arglocs"; use it if non-NULL when
3043 !EXPR_HAS_LOCATION (cur_param) to get at location information.
3044
3045 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
3046
3047 PR c/53037
3048 * c-attribs.c (handle_warn_if_not_aligned_attribute): New.
3049 (c_common_attribute_table): Add warn_if_not_aligned.
3050 (handle_aligned_attribute): Renamed to ...
3051 (common_handle_aligned_attribute): Remove argument, name, and add
3052 argument, warn_if_not_aligned. Handle warn_if_not_aligned.
3053 (handle_aligned_attribute): New.
3054 * c.opt: Add -Wif-not-aligned and -Wpacked-not-aligned.
3055
3056 2017-08-14 Martin Sebor <msebor@redhat.com>
3057
3058 PR c/81117
3059 * c-attribs.c (c_common_attribute_table): Add nonstring entry.
3060 (handle_nonstring_attribute): New function.
3061
3062 2017-08-14 Martin Sebor <msebor@redhat.com>
3063
3064 PR c/81117
3065 * c-format.h (T89_G): New macro.
3066 * c-format.c (local_gcall_ptr_node): New variable.
3067 (init_dynamic_diag_info): Initialize it.
3068
3069 2017-08-11 Martin Liska <mliska@suse.cz>
3070
3071 * c-opts.c (c_common_post_options): Replace ASM_OUTPUT_DEF with
3072 TARGET_SUPPORTS_ALIASES.
3073
3074 2017-08-10 David Malcolm <dmalcolm@redhat.com>
3075
3076 * c-common.c (c_parse_error): Add rich_location * param, using it
3077 rather implicitly using input_location.
3078 * c-common.h (c_parse_error): Add rich_location * param.
3079
3080 2017-08-09 Marek Polacek <polacek@redhat.com>
3081
3082 * c-common.c (pointer_int_sum): Use true/false instead of 1/0.
3083 (c_common_truthvalue_conversion): Likewise.
3084 * c-omp.c (c_finish_omp_atomic): Likewise.
3085 * c-common.h (build_binary_op): Update declaration.
3086
3087 2017-08-08 Martin Liska <mliska@suse.cz>
3088
3089 * c-ada-spec.c: Include header files.
3090 * c-ubsan.c: Likewise.
3091 * c-warn.c: Likewise.
3092
3093 2017-08-07 Jakub Jelinek <jakub@redhat.com>
3094
3095 PR c/69389
3096 * c-omp.c (c_finish_omp_atomic): Handle atomics on bitfields.
3097
3098 2017-08-07 Eric Botcazou <ebotcazou@adacore.com>
3099
3100 * c-ada-spec.c (has_nontrivial_methods): Test for FUNCTION_DECL.
3101 (print_ada_methods): Likewise.
3102 (print_ada_declaration): Likewise.
3103
3104 2017-08-07 Martin Liska <mliska@suse.cz>
3105
3106 * array-notation-common.c: Add new includes.
3107 * c-format.c( handle_format_attribute): Canonicalize a format
3108 function name.
3109 * c-lex.c (c_common_has_attribute): Canonicalize name of an
3110 attribute.
3111 * c-pretty-print.c: Add new include.
3112
3113 2017-08-05 Eric Botcazou <ebotcazou@adacore.com>
3114
3115 * c-ada-spec.c (has_static_fields): Look only into variables.
3116 (print_constructor): Add TYPE parameter and use it for the name.
3117 (print_destructor): Likewise.
3118 (print_ada_declaration): Adjust to new constructor/destructor names.
3119 Adjust calls to print_constructor and print_destructor.
3120 (print_ada_struct_decl): Do not test TREE_STATIC on FIELD_DECL.
3121 Look only into variables in the final loop.
3122
3123 2017-08-01 Eric Botcazou <ebotcazou@adacore.com>
3124
3125 * c-ada-spec.c (has_static_fields): Look only into fields.
3126 (dump_generic_ada_node): Small tweak.
3127 (dump_nested_types): Look only into fields.
3128 (print_ada_declaration): Look only into methods. Small tweak.
3129 (print_ada_struct_decl): Look only into fields. Use DECL_VIRTUAL_P.
3130
3131 2017-08-01 Eric Botcazou <ebotcazou@adacore.com>
3132
3133 * c-ada-spec.c (print_generic_ada_decl): Pass correctly-typed constant.
3134 (dump_ada_function_declaration): Likewise.
3135 (dump_generic_ada_node): Likewise.
3136 (print_ada_declaration): Add support for const-qualified variables.
3137
3138 2017-07-31 Martin Liska <mliska@suse.cz>
3139
3140 PR sanitize/81530
3141 * c-ubsan.c (ubsan_maybe_instrument_array_ref):
3142 Guard condition with flag_sanitize_p also with current_function_decl
3143 non-null equality.
3144 (ubsan_maybe_instrument_reference_or_call): Likewise.
3145
3146 2017-07-30 Uros Bizjak <ubizjak@gmail.com>
3147
3148 * c-format.c (asm_fprintf_char_table): Add 'z' to format_chars.
3149
3150 2017-07-29 Eric Botcazou <ebotcazou@adacore.com>
3151
3152 * c-ada-spec.c (dump_generic_ada_node): Take into account signedness
3153 for enumeral types.
3154 (print_ada_declaration): Add missing guard for record types.
3155
3156 2017-07-27 Jakub Jelinek <jakub@redhat.com>
3157
3158 PR c/45784
3159 * c-omp.c (c_finish_omp_for): If the condition is wrapped in
3160 rhs of COMPOUND_EXPR(s), skip them and readd their lhs into
3161 new COMPOUND_EXPRs around the rhs of the comparison.
3162
3163 2017-07-27 Marek Polacek <polacek@redhat.com>
3164
3165 PR c/81417
3166 * c-warn.c (warn_for_sign_compare): Tweak the warning message. Print
3167 the types.
3168
3169 2017-07-27 Jakub Jelinek <jakub@redhat.com>
3170
3171 * c-attribs.c (c_common_attribute_table): Add noipa attribute.
3172 (handle_noipa_attribute): New function.
3173
3174 2017-07-07 Torsten Duwe <duwe@suse.de>
3175
3176 * c-attribs.c (c_common_attribute_table): Add entry for
3177 "patchable_function_entry".
3178
3179 2017-07-20 Nathan Sidwell <nathan@acm.org>
3180
3181 Remove TYPE_METHODS.
3182 * c-ada-spec.c (is_tagged_type, has_nontrivial_methods,
3183 dump_ada_template, print_ada_methods,
3184 print_ada_declaration): Member fns are on TYPE_FIELDS.
3185
3186 2017-07-18 Nathan Sidwell <nathan@acm.org>
3187
3188 * c-warn.c (warn_for_memset): Use TYPE_{MIN,MAX}_VALUE.
3189
3190 2017-07-14 David Malcolm <dmalcolm@redhat.com>
3191
3192 * c-common.c (try_to_locate_new_include_insertion_point): New
3193 function.
3194 (per_file_includes_t): New typedef.
3195 (added_includes_t): New typedef.
3196 (added_includes): New variable.
3197 (maybe_add_include_fixit): New function.
3198 * c-common.h (maybe_add_include_fixit): New decl.
3199
3200 2017-07-10 Martin Sebor <msebor@redhat.com>
3201
3202 PR other/81345
3203 * c.opt (-Wstringop-overflow): Set defaults in LangEnabledBy.
3204
3205 2017-07-06 David Malcolm <dmalcolm@redhat.com>
3206
3207 * c-common.c (selftest::c_family_tests): New.
3208 * c-common.h (selftest::run_c_tests): Move decl to c/c-lang.h.
3209 (selftest::c_family_tests): New decl.
3210
3211 2017-07-04 Marek Polacek <polacek@redhat.com>
3212
3213 PR c/81231
3214 * c-common.c (sync_resolve_size): Give error for pointers to incomplete
3215 types.
3216
3217 2017-07-04 Marek Polacek <polacek@redhat.com>
3218
3219 * c-warn.c (warn_if_unused_value): Remove WITH_CLEANUP_EXPR handling.
3220
3221 2017-06-28 Martin Liska <mliska@suse.cz>
3222
3223 PR ipa/81128
3224 * c-attribs.c (handle_alias_ifunc_attribute): Append ifunc alias
3225 to a function declaration.
3226
3227 2017-06-28 Martin Liska <mliska@suse.cz>
3228
3229 PR driver/79659
3230 * c.opt: Add IntegerRange to various options.
3231
3232 2017-06-26 Marek Polacek <polacek@redhat.com>
3233
3234 PR c/80116
3235 * c-common.h (warn_for_multistatement_macros): Declare.
3236 * c-warn.c: Include "c-family/c-indentation.h".
3237 (warn_for_multistatement_macros): New function.
3238 * c.opt (Wmultistatement-macros): New option.
3239 * c-indentation.c (guard_tinfo_to_string): No longer static.
3240 Change the parameter type to "enum rid". Handle RID_SWITCH.
3241 * c-indentation.h (guard_tinfo_to_string): Declare.
3242
3243 2017-06-23 Marc Glisse <marc.glisse@inria.fr>
3244
3245 * c-common.c (c_common_nodes_and_builtins): Use builtin_structptr_types.
3246
3247 2017-06-15 Martin Sebor <msebor@redhat.com>
3248
3249 PR c++/80560
3250 * c.opt (-Wclass-memaccess): New option.
3251
3252 2017-06-14 Boris Kolpackov <boris@codesynthesis.com>
3253
3254 * c-opts.c (c_common_finish): Handle '-' special value to -MF.
3255
3256 2017-06-13 Marek Polacek <polacek@redhat.com>
3257
3258 PR objc/80949
3259 * c-warn.c (do_warn_duplicated_branches): Return if any of the
3260 branches is null.
3261
3262 2017-06-13 Martin Liska <mliska@suse.cz>
3263
3264 PR sanitize/78204
3265 * c-attribs.c (add_no_sanitize_value): New function.
3266 (handle_no_sanitize_attribute): Likewise.
3267 (handle_no_sanitize_address_attribute): Use the function.
3268 (handle_no_sanitize_thread_attribute): New function.
3269 (handle_no_address_safety_analysis_attribute): Use
3270 add_no_sanitize_value.
3271 (handle_no_sanitize_undefined_attribute): Likewise.
3272 * c-common.h: Declare new functions.
3273 * c-ubsan.c (ubsan_instrument_division): Use sanitize_flags_p.
3274 (ubsan_instrument_shift): Likewise.
3275 (ubsan_instrument_bounds): Likewise.
3276 (ubsan_maybe_instrument_array_ref): Likewise.
3277 (ubsan_maybe_instrument_reference_or_call): Likewise.
3278
3279 2017-06-11 Jason Merrill <jason@redhat.com>
3280
3281 * c-ada-spec.c, c-pragma.c: Use id_equal.
3282
3283 2017-06-04 Marek Polacek <polacek@redhat.com>
3284
3285 PR c/80919
3286 * c-format.c (matching_type_p): Return false if any of the types
3287 requires structural equality.
3288
3289 2017-06-02 Martin Sebor <msebor@redhat.com>
3290
3291 PR c/80892
3292 * c-warn.c (conversion_warning): Use -Wconversion for integer
3293 conversion and -Wfloat-conversion for floating one.
3294
3295 2017-06-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
3296
3297 * c.opt (Wsizeof-pointer-div): New warning option.
3298
3299 2017-06-01 Volker Reichelt <v.reichelt@netcologne.de>
3300
3301 * c.opt (Wcatch-value): New shortcut for Wcatch-value=1.
3302 (Wcatch-value=1): Enable by -Wall.
3303
3304 2017-05-30 David Malcolm <dmalcolm@redhat.com>
3305
3306 * c-format.c (gcc_cxxdiag_char_table): Add 'H' and 'I' to
3307 format_chars.
3308 * c.opt (fdiagnostics-show-template-tree): New option.
3309 (felide-type): New option.
3310
3311 2017-05-25 Volker Reichelt <v.reichelt@netcologne.de>
3312
3313 * c.opt (Wcatch-value=): New C++ warning flag.
3314
3315 2017-05-24 Nathan Sidwell <nathan@acm.org>
3316
3317 * c=common.c (field_decl_cmp, resort_field_decl_cmp): Adjust T
3318 const casts to avoid warning.
3319
3320 2017-05-24 Martin Sebor <msebor@redhat.com>
3321
3322 PR c/80731
3323 * c-common.h (unsafe_conversion_p): Add a function argument.
3324 * c-common.c (unsafe_conversion_p): Same.
3325 Add type names and values to diagnostics.
3326 (scalar_to_vector): Adjust.
3327 * c-warn.c (constant_expression_error): Add a function argument.
3328 Add type names and values to diagnostics.
3329 (conversion_warning): Add a function argument.
3330 Add type names and values to diagnostics.
3331 (warnings_for_convert_and_check): Same.
3332
3333 2017-05-19 Jason Merrill <jason@redhat.com>
3334
3335 * c-warn.c (match_case_to_enum_1): Don't warn about enums with no
3336 enumerators.
3337
3338 2017-05-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
3339
3340 * c-format.c (locus): Move out of function scope,
3341 add GTY attribute.
3342
3343 2017-05-19 Nathan Sidwell <nathan@acm.org>
3344
3345 * c-opts.c (class_dump_file, class_dump_flags): Delete.
3346 (c_common_parse_file): Remove class dump handling.
3347 (get_dump_info): Likewise.
3348
3349 2017-05-19 Richard Biener <rguenther@suse.de>
3350
3351 PR c++/80593
3352 * c-warn.c (strict_aliasing_warning): Do not warn for accesses
3353 to alias-set zero memory.
3354
3355 2017-05-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
3356
3357 * c-format.c (local_tree_type_node): Add GTY attribute.
3358
3359 2017-05-18 Marek Polacek <polacek@redhat.com>
3360
3361 * c-common.c (c_common_type_for_size): Use NULL_TREE instead of 0.
3362 (c_common_fixed_point_type_for_size): Likewise.
3363 (c_common_type_for_mode): Likewise.
3364 (shorten_compare): Likewise.
3365 (c_promoting_integer_type_p): Use false/true instead of 0/1.
3366 * c-pragma.c (maybe_apply_renaming_pragma): Use NULL_TREE instead of 0.
3367
3368 2017-05-18 Marek Polacek <polacek@redhat.com>
3369
3370 * c-common.c (self_promoting_args_p): Change the return type to bool.
3371 Use false/true instead of 0/1.
3372 * c-common.h (self_promoting_args_p): Update.
3373
3374 2017-05-17 Marek Polacek <polacek@redhat.com>
3375
3376 * c-common.c: Use NULL_TREE instead of 0 where appropriate.
3377 * c-warn.c: Likewise.
3378
3379 2017-05-17 Ville Voutilainen <ville.voutilainen@gmail.com>
3380
3381 Implement new C++ intrinsics __is_assignable and __is_constructible.
3382 * c-common.c (__is_assignable, __is_constructible): New.
3383 * c-common.h (RID_IS_ASSIGNABLE, RID_IS_CONSTRUCTIBLE): Likewise.
3384
3385 2017-05-17 Martin Liska <mliska@suse.cz>
3386
3387 * c-common.h: Introduce dump_flags_t type and
3388 use it instead of int type.
3389 * c-gimplify.c (c_genericize): Likewise.
3390 * c-opts.c: Likewise.
3391
3392 2017-05-17 Marek Polacek <polacek@redhat.com>
3393
3394 * c-common.c (c_save_expr): Remove.
3395 (c_common_truthvalue_conversion): Remove a call to c_save_expr.
3396 * c-common.h (c_save_expr): Remove declaration.
3397
3398 2017-05-09 Volker Reichelt <v.reichelt@netcologne.de>
3399
3400 PR c/35441
3401 * c-pretty-print.c (c_pretty_printer::expression): Handle MAX_EXPR,
3402 MIN_EXPR, EXACT_DIV_EXPR, RDIV_EXPR, LROTATE_EXPR, RROTATE_EXPR.
3403 (c_pretty_printer::postfix_expression): Handle MAX_EXPR, MIN_EXPR.
3404 (c_pretty_printer::multiplicative_expression): Handle EXACT_DIV_EXPR,
3405 RDIV_EXPR.
3406 (pp_c_shift_expression): Handle LROTATE_EXPR, RROTATE_EXPR.
3407
3408 2017-05-09 Marek Polacek <polacek@redhat.com>
3409
3410 PR c/80525
3411 * c-warn.c (unwrap_c_maybe_const): New.
3412 (warn_logical_operator): Call it.
3413
3414 2017-05-09 Nathan Sidwell <nathan@acm.org>
3415
3416 * c-common.c (c_register_builtin_type): Use pushdecl lang_hook.
3417 * c-common.h (pushdecl_top_level, pushdecl): Don't declare here.
3418
3419 2017-05-08 Martin Sebor <msebor@redhat.com>
3420
3421 PR translation/80280
3422 * c-format.h (struct format_flag_spec): Add new member.
3423 (T89_T): New macro.
3424 * c-format.c (local_tree_type_node): New global.
3425 (printf_flag_specs, asm_fprintf_flag_spec): Initialize new data.
3426 (gcc_diag_flag_specs, scanf_flag_specs, strftime_flag_specs): Ditto.
3427 (strfmon_flag_specs): Likewise.
3428 (gcc_diag_char_table, gcc_cdiag_char_table): Split up specifiers
3429 with distinct quoting properties.
3430 (gcc_tdiag_char_table, gcc_cxxdiag_char_table): Same.
3431 (flag_chars_t::validate): Add argument and handle bad quoting.
3432 (check_format_info_main): Handle quoting problems.
3433 (init_dynamic_diag_info): Simplify.
3434
3435 2017-05-08 Jason Merrill <jason@redhat.com>
3436
3437 * c-opts.c (c_common_post_options): Update defaults for
3438 flag_abi_version and flag_abi_compat_version.
3439
3440 2017-05-05 David Malcolm <dmalcolm@redhat.com>
3441
3442 * c-common.c (c_cpp_error): Replace report_diagnostic
3443 with diagnostic_report_diagnostic.
3444
3445 2017-05-04 Martin Sebor <msebor@redhat.com>
3446
3447 PR translation/80280
3448 * c-attribs.c (handle_alias_ifunc_attribute): Quote a %D directive.
3449 (handle_weakref_attribute): Same.
3450
3451 2017-05-03 Nathan Sidwell <nathan@acm.org>
3452
3453 Canonicalize canonical type hashing
3454 * c-common.c (complete_array_type): Use type_hash_canon.
3455
3456 2017-05-01 Xi Ruoyao <ryxi@stu.xidian.edu.cn>
3457
3458 PR c++/80038
3459 * c-common.h (cilk_gimplify_call_params_in_spawned_fn): Remove
3460 prototype.
3461 (cilk_install_body_pedigree_operations): Likewise.
3462 * cilk.c (cilk_set_spawn_marker): Mark functions that should be
3463 detatched.
3464 (cilk_gimplify_call_params_in_spawned_fn): Remove.
3465 (cilk_install_body_pedigree_operations): Likewise.
3466 (gimplify_cilk_spawn): Add EXPR_STMT and CLEANUP_POINT_EXPR
3467 unwrapping.
3468
3469 2017-04-27 Jakub Jelinek <jakub@redhat.com>
3470
3471 PR c++/80534
3472 * c-common.c (complete_array_type): Only hash TYPE_TYPELESS_STORAGE
3473 flag on non-aggregate element types.
3474
3475 2017-04-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
3476
3477 * c-common.c (c_type_hasher, type_hash_table): Remove.
3478 (c_common_get_alias_set): Remove unreachable code.
3479 * c-opts.c (c_common_post_options): Make sure cc1 takes only one file.
3480
3481 2017-04-20 Volker Reichelt <v.reichelt@netcologne.de>
3482
3483 * c.opt (Wextra-semi): New C++ warning flag.
3484
3485 2017-04-20 Jakub Jelinek <jakub@redhat.com>
3486
3487 PR middle-end/80423
3488 * c-common.c (complete_array_type): Preserve TYPE_TYPELESS_STORAGE.
3489
3490 2017-04-18 Jakub Jelinek <jakub@redhat.com>
3491
3492 PR middle-end/79788
3493 PR middle-end/80375
3494 * c-common.c (c_common_type_for_mode): Don't handle
3495 widest_*_literal_type_node here.
3496 c_common_signed_or_unsigned_type): Likewise.
3497 (c_common_nodes_and_builtins): Set widest_*_literal_type_node
3498 to *intTI_type_node or *intDI_type_node depending on whether
3499 TImode is supported by the target or not.
3500
3501 2017-04-10 Martin Liska <mliska@suse.cz>
3502
3503 PR sanitizer/80350
3504 * c-ubsan.c (ubsan_instrument_shift): Evaluate RHS before
3505 doing an UBSAN check.
3506
3507 2017-04-03 Jonathan Wakely <jwakely@redhat.com>
3508
3509 * c-warn.c (do_warn_double_promotion): Fix typo in comment.
3510
3511 2017-03-31 Jakub Jelinek <jakub@redhat.com>
3512
3513 PR c++/79572
3514 * c-ubsan.h (ubsan_maybe_instrument_reference): Change argument to
3515 tree *.
3516 * c-ubsan.c (ubsan_maybe_instrument_reference): Likewise. Handle
3517 not just NOP_EXPR to REFERENCE_TYPE, but also INTEGER_CST with
3518 REFERENCE_TYPE.
3519
3520 2017-03-31 David Malcolm <dmalcolm@redhat.com>
3521
3522 PR documentation/78732
3523 * c.opt (Wendif-labels): Fix description to refer to
3524 #else rather than #elif.
3525
3526 2017-03-31 Jakub Jelinek <jakub@redhat.com>
3527
3528 PR libstdc++/80251
3529 * c-common.h (enum rid): Add RID_IS_AGGREGATE.
3530 * c-common.c (c_common_reswords): Add __is_aggregate trait.
3531
3532 2017-03-27 Jakub Jelinek <jakub@redhat.com>
3533
3534 PR middle-end/80162
3535 * c-common.c (c_common_mark_addressable_vec): Don't set
3536 TREE_ADDRESSABLE on DECL_HARD_REGISTER.
3537
3538 2017-03-21 Martin Sebor <msebor@redhat.com>
3539
3540 PR c++/79548
3541 * c-common.c (set_underlying_type): Mark type used only when
3542 original del is declared unused.
3543
3544 2017-03-10 David Malcolm <dmalcolm@redhat.com>
3545
3546 PR translation/79848
3547 * c-format.c (check_format_string): Simplify uses of "%<%s%>" to
3548 "%qs".
3549
3550 2017-03-10 David Malcolm <dmalcolm@redhat.com>
3551
3552 PR c/79921
3553 * c-indentation.c (warn_for_misleading_indentation): Remove parens
3554 from inform's message, so that xgettext can locate it.
3555
3556 2017-03-09 Marek Polacek <polacek@redhat.com>
3557
3558 PR c++/79962
3559 PR c++/79984
3560 * c-attribs.c (handle_nonnull_attribute): Save the result of default
3561 conversion to the attribute list.
3562
3563 2017-03-09 Martin Liska <mliska@suse.cz>
3564
3565 * c-ada-spec.c (macro_length): Increment value instead of a pointer.
3566
3567 2017-03-03 Jason Merrill <jason@redhat.com>
3568
3569 * c.opt (Wnoexcept-type): New.
3570
3571 2017-03-02 Richard Biener <rguenther@suse.de>
3572
3573 PR c/79756
3574 * c-common.c (c_common_mark_addressable_vec): Look through
3575 C_MAYBE_CONST_EXPR.
3576
3577 2017-02-28 Martin Liska <mliska@suse.cz>
3578
3579 * c.opt: Replace space with tabular for options of <number>
3580 type.
3581
3582 2017-02-28 Martin Liska <mliska@suse.cz>
3583
3584 * c.opt: Fix --help=option -Q for options which are of
3585 an enum type.
3586
3587 2017-02-24 Jakub Jelinek <jakub@redhat.com>
3588
3589 PR c++/79588
3590 * c-common.c (check_function_restrict): New function.
3591 (check_function_arguments): Add FNDECL argument. Call
3592 check_function_restrict if -Wrestrict.
3593 * c-warn.c (warn_for_restrict): Remove ARGS argument, add ARGARRAY
3594 and NARGS. Use auto_vec for ARG_POSITIONS, simplify.
3595 * c-common.h (check_function_arguments): Add FNDECL argument.
3596 (warn_for_restrict): Remove ARGS argument, add ARGARRAY and NARGS.
3597
3598 2017-02-24 Eric Botcazou <ebotcazou@adacore.com>
3599
3600 * c-ada-spec.c (dump_ada_function_declaration): Add comment about the
3601 treatment of parameters with pointer-to-tagged type and tidy up.
3602 (print_ada_methods): Remove the special treatment of C++ static member
3603 functions.
3604
3605 2017-02-22 Martin Liska <mliska@suse.cz>
3606
3607 * c.opt: Replace inequality signs with square brackets
3608 for -Wnornalized.
3609
3610 2017-02-21 Jakub Jelinek <jakub@redhat.com>
3611
3612 PR c++/79641
3613 * c-attribs.c (handle_mode_attribute): Use build_qualified_type to
3614 preserve quals.
3615
3616 2017-02-17 Joseph Myers <joseph@codesourcery.com>
3617
3618 * c-cppbuiltin.c (builtin_define_float_constants): Define
3619 __DECIMAL_DIG__ to the value for long double.
3620
3621 2017-02-15 Marek Polacek <polacek@redhat.com>
3622
3623 PR c/79515
3624 * c-warn.c (do_warn_double_promotion): Don't warn if an invalid
3625 conversion has occured.
3626
3627 2017-01-24 David Malcolm <dmalcolm@redhat.com>
3628
3629 * c-common.c (c_common_reswords): Add "__RTL".
3630 * c-common.h (enum rid): Add RID_RTL.
3631
3632 2017-01-20 Marek Polacek <polacek@redhat.com>
3633
3634 PR c/64279
3635 * c-common.h (do_warn_duplicated_branches_r): Declare.
3636 * c-gimplify.c (c_genericize): Walk the function tree calling
3637 do_warn_duplicated_branches_r.
3638 * c-warn.c (expr_from_macro_expansion_r): New.
3639 (do_warn_duplicated_branches): New.
3640 (do_warn_duplicated_branches_r): New.
3641 * c.opt (Wduplicated-branches): New option.
3642
3643 2017-01-17 David Malcolm <dmalcolm@redhat.com>
3644
3645 PR c++/71497
3646 * c-indentation.c (warn_for_misleading_indentation): Use the past
3647 subjunctive in the note.
3648
3649 2017-01-17 Aldy Hernandez <aldyh@redhat.com>
3650
3651 PR c/79116
3652 * array-notation-common.c (cilkplus_extract_an_triplets): Convert
3653 start type to integer_type.
3654
3655 2017-01-16 Jakub Jelinek <jakub@redhat.com>
3656
3657 PR driver/49726
3658 * c.opt (gen-decls): Add Driver flag.
3659
3660 2017-01-16 Paolo Carlini <paolo.carlini@oracle.com>
3661
3662 Revert:
3663 2017-01-16 Paolo Carlini <paolo.carlini@oracle.com>
3664
3665 PR c++/71737
3666 * c-common.c (set_underlying_type): Always set DECL_ORIGINAL_TYPE.
3667
3668 2017-01-16 Paolo Carlini <paolo.carlini@oracle.com>
3669
3670 PR c++/71737
3671 * c-common.c (set_underlying_type): Always set DECL_ORIGINAL_TYPE.
3672
3673 2017-01-12 Martin Sebor <msebor@redhat.com>
3674
3675 (-Wformat-overflow): ...to this.
3676
3677 2017-01-11 Martin Sebor <msebor@redhat.com>
3678
3679 PR c/78768
3680 * c.opt (-Walloca-larger-than, -Wformat-length, -Wformat-truncation):
3681 Also enable for LTO.
3682
3683 2017-01-10 Jason Merrill <jason@redhat.com>
3684
3685 Implement P0195R2, C++17 variadic using.
3686 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_variadic_using.
3687
3688 2017-01-09 Jakub Jelinek <jakub@redhat.com>
3689
3690 PR translation/79019
3691 PR translation/79020
3692 * c.opt (Wnormalized=): Fix typo in description.
3693
3694 2017-01-08 Martin Sebor <msebor@redhat.com>
3695
3696 PR middle-end/77708
3697 * c.opt (-Wformat-truncation): New option.
3698
3699 2017-01-06 Alexandre Oliva <aoliva@redhat.com>
3700
3701 * c-pretty-print.c (pp_c_tree_decl_identifier): Convert 16-bit
3702 value to unsigned short to fit in 4 hex digits without
3703 warnings.
3704
3705 2017-01-05 Eric Botcazou <ebotcazou@adacore.com>
3706
3707 * c.opt (fsso-struct): Add 'native' value.
3708
3709 2017-01-05 Martin Liska <mliska@suse.cz>
3710
3711 PR pch/78970
3712 * c-opts.c (c_common_post_options): Reject '-' filename for a precompiled
3713 header.
3714
3715 2017-01-04 Marek Polacek <polacek@redhat.com>
3716
3717 PR c++/64767
3718 * c.opt (Wpointer-compare): New option.
3719
3720 2017-01-04 Jakub Jelinek <jakub@redhat.com>
3721
3722 PR driver/78957
3723 * c.opt (fsso-struct=): Add RejectNegative.
3724
3725 2017-01-01 Jakub Jelinek <jakub@redhat.com>
3726
3727 Update copyright years.
3728
3729 2016-12-29 Martin Liska <mliska@suse.cz>
3730
3731 PR c/78933
3732 * c.opt (strong-eval-order): Add RejectNegative keyword.
3733
3734 2016-12-22 Jason Merrill <jason@redhat.com>
3735
3736 Implement P0522R0, matching of template template arguments.
3737 * c-cppbuiltin.c (c_cpp_builtins): Define
3738 __cpp_template_template_args.
3739
3740 2016-12-21 Jakub Jelinek <jakub@redhat.com>
3741
3742 PR bootstrap/78817
3743 * c-common.c (struct nonnull_arg_ctx): New type.
3744 (check_function_nonnull): Return bool instead of void. Use
3745 nonnull_arg_ctx as context rather than just location_t.
3746 (check_nonnull_arg): Adjust for the new context type, set
3747 warned_p to true if a warning has been diagnosed.
3748 (check_function_arguments): Return bool instead of void.
3749 * c-common.h (check_function_arguments): Adjust prototype.
3750
3751 2016-12-21 Jason Merrill <jason@redhat.com>
3752
3753 * c.opt (-fnew-ttp-matching): New flag.
3754 * c-opts.c (c_common_post_options): Default on if -std=c++1z.
3755
3756 2016-12-14 Martin Jambor <mjambor@suse.cz>
3757
3758 * c-omp.c: Include omp-general.h instead of omp-low.h.
3759 (c_finish_oacc_wait): Adjusted call to find_omp_clause to use its new
3760 name.
3761
3762 2016-12-14 Martin Sebor <msebor@redhat.com>
3763
3764 PR c/17308
3765 * c-common.c (check_nonnull_arg): Disable when optimization
3766 is enabled.
3767
3768 2016-12-12 Marek Polacek <polacek@redhat.com>
3769
3770 PR c++/78647
3771 * c-common.c (attribute_fallthrough_p): Return false for
3772 error_mark_node.
3773
3774 2016-12-08 Martin Sebor <msebor@redhat.com>
3775
3776 PR c/78284
3777 * c.opt (-Walloc-zero, -Walloc-size-larger-than): New options.
3778
3779 2016-12-08 Martin Sebor <msebor@redhat.com>
3780
3781 PR c/78165
3782 * c-pretty-print (pp_c_integer_constant): Avoid formatting type
3783 suffix.
3784
3785 2016-12-07 Martin Sebor <msebor@redhat.com>
3786
3787 PR c/53562
3788 PR middle-end/77784
3789 PR middle-end/78149
3790 PR middle-end/78138
3791 * c.opt (-Wstringop-overflow): New option.
3792
3793 2016-12-02 Maxim Ostapenko <m.ostapenko@samsung.com>
3794
3795 * c-attribs.c (asan odr indicator): New attribute.
3796 (handle_asan_odr_indicator_attribute): New function.
3797
3798 2016-11-26 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
3799
3800 * c-common.c (c_common_nodes_and_builtins): Remove initialization of
3801 ptrdiff_type_node;
3802
3803 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
3804
3805 * c-common.c (excess_precision_mode_join): New.
3806 (c_ts18661_flt_eval_method): New.
3807 (c_c11_flt_eval_method): Likewise.
3808 (c_flt_eval_method): Likewise.
3809 * c-common.h (excess_precision_mode_join): New.
3810 (c_flt_eval_method): Likewise.
3811 * c-cppbuiltin.c (c_cpp_flt_eval_method_iec_559): New.
3812 (cpp_iec_559_value): Call it.
3813 (c_cpp_builtins): Modify logic for __LIBGCC_*_EXCESS_PRECISION__,
3814 call c_flt_eval_method to set __FLT_EVAL_METHOD__ and
3815 __FLT_EVAL_METHOD_TS_18661_3__.
3816
3817 2016-11-23 James Greenhalgh <james.greenhalgh@arm.com>
3818
3819 * c-opts.c (c_common_post_options): Add logic to handle the default
3820 case for -fpermitted-flt-eval-methods.
3821
3822 2016-11-23 Paolo Bonzini <bonzini@gnu.org>
3823
3824 * c.opt (Wexpansion-to-defined): New.
3825
3826 2016-11-23 Jakub Jelinek <jakub@redhat.com>
3827
3828 PR target/78451
3829 * c-pragma.c (handle_pragma_target): Don't replace
3830 current_target_pragma, but chainon the new args to the current one.
3831
3832 2016-11-22 Nathan Sidwell <nathan@acm.org>
3833
3834 * array-notation-common.c (cilkplus_extract_an_trplets): Fix
3835 indentation and formatting.
3836
3837 2016-11-21 Martin Sebor <msebor@redhat.com>
3838
3839 * c.opt (-fprintf-return-value): Enable by default.
3840
3841 2016-11-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
3842
3843 PR c++/71973
3844 * c.opt (-Wbuiltin-declaration-mismatch): New warning.
3845 * c-common.c (c_common_nodes_and_builtins): Initialize
3846 const_tm_ptr_type_node.
3847
3848 2016-11-16 Marek Polacek <polacek@redhat.com>
3849
3850 PR c/78285
3851 * c-common.c (c_add_case_label): Turn error_at calls into inform.
3852
3853 2016-11-14 Jakub Jelinek <jakub@redhat.com>
3854
3855 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_structured_bindings.
3856
3857 2016-11-14 Prasad Ghangal <prasad.ghangal@gmail.com>
3858 Richard Biener <rguenther@suse.de>
3859
3860 * c-common.h (c_common_resword): Add RID_GIMPLE, RID_PHI types.
3861 * c-common.h (enum rid): Add RID_GIMPLE, RID_PHI.
3862 * c.opt (fgimple): New option.
3863
3864 2016-11-13 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
3865
3866 PR c/35503
3867 * c-common.h (warn_for_restrict): Declare.
3868 * c-warn.c: Include gcc-rich-location.h.
3869 (warn_for_restrict): New function.
3870 * c-format.c (gcc_tdiag_char_table): Add entry for "Z" specifier.
3871 (gcc_cdiag_char_table): Likewise.
3872 (gcc_cxxdiag_char_table): Likewise.
3873 * c.opt (Wrestrict): New option.
3874
3875 2016-11-13 Eric Botcazou <ebotcazou@adacore.com>
3876
3877 * c-ada-spec.c (print_ada_declaration): For typedef declarations, look
3878 for nested types only if the type is a record or union and dump SLOC.
3879
3880 2016-11-09 Jason Merrill <jason@redhat.com>
3881
3882 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_template_auto.
3883
3884 2016-11-09 Jakub Jelinek <jakub@redhat.com>
3885
3886 * c-ubsan.c (ubsan_instrument_shift): Handle split
3887 -fsanitize=shift-base and -fsanitize=shift-exponent.
3888
3889 2016-11-07 Jason Merrill <jason@redhat.com>
3890
3891 * c.opt (Wc++1z-compat): New.
3892 * c-cppbuiltin.c (c_cpp_builtins): Add __cpp_noexcept_function_type.
3893
3894 2016-11-07 Martin Liska <mliska@suse.cz>
3895
3896 * c-warn.c (warn_for_unused_label): Save all labels used
3897 in goto or in &label.
3898
3899 2016-11-03 Jason Merrill <jason@redhat.com>
3900
3901 * c-cppbuiltin.c (c_cpp_builtins): Correct
3902 __cpp_inheriting_constructors.
3903
3904 2016-11-01 Jason Merrill <jason@redhat.com>
3905
3906 * c-cppbuiltin.c (c_cpp_builtins): Update
3907 __cpp_inheriting_constructors.
3908
3909 * c.opt (-fnew-inheriting-ctors): New.
3910 * c-opts.c: Default to on for ABI 11+.
3911
3912 2016-10-31 Jakub Jelinek <jakub@redhat.com>
3913
3914 PR c++/77948
3915 * c.opt (fext-numeric-literals): Add Var and Init.
3916 * c-opts.c (c_common_handle_option): Don't clear
3917 cpp_opts->ext_numeric_literals for -std=c++{11,14,1z}.
3918 (c_common_post_options): Clear it here if not set
3919 explicitly.
3920
3921 2016-10-28 Aldy Hernandez <aldyh@redhat.com>
3922
3923 PR debug/77773
3924 * c-pretty-print.c (simple_type_specifier): Do not dereference `t'
3925 if NULL.
3926
3927 2016-10-25 Jakub Jelinek <jakub@redhat.com>
3928
3929 * c-common.h (enum rid): Add RID_BUILTIN_LAUNDER.
3930 * c-common.c (c_common_reswords): Add __builtin_launder.
3931
3932 2016-10-24 Bernd Edlinger <bernd.edlinger@hotmail.de>
3933
3934 * c-common.c (c_common_truthvalue_conversion): Warn for
3935 multiplications in boolean context. Fix the quoting of '<<' and '<'
3936 in the shift warning.
3937
3938 2016-10-20 Bernd Edlinger <bernd.edlinger@hotmail.de>
3939
3940 * c-common.c (c_common_truthvalue_conversion): Fix the comment.
3941
3942 2016-10-20 Jason Merrill <jason@redhat.com>
3943
3944 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_concepts value.
3945
3946 2016-10-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
3947
3948 * c-common.c (c_common_truthvalue_conversion): Warn only for signed
3949 integer shift ops in boolean context.
3950
3951 2016-10-18 Aldy Hernandez <aldyh@redhat.com>
3952
3953 * c.opt (Walloca): New.
3954 (Walloca-larger-than=): New.
3955 (Wvla-larger-than=): New.
3956
3957 2016-10-17 Marek Polacek <polacek@redhat.com>
3958
3959 * c-warn.c (find_array_ref_with_const_idx_r): Remove parameter names.
3960 Return immediately when finding a match.
3961 (warn_tautological_cmp): Remove a boolean variable that is no longer
3962 needed.
3963
3964 2016-10-17 Marek Polacek <polacek@redhat.com>
3965
3966 * c-attribs.c: New file.
3967 * c-common.c: Move attributes handling to c-attribs.c.
3968 (get_nonnull_operand): No longer static.
3969 * c-common.h: Move the declarations from c-attribs.c to its own section.
3970
3971 2016-10-14 Jason Merrill <jason@redhat.com>
3972
3973 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_aggregate_bases
3974 and __cpp_deduction_guides.
3975
3976 2016-10-13 Jason Merrill <jason@redhat.com>
3977
3978 * c-cppbuiltin.c (c_cpp_builtins): Add __cpp_inline_variables.
3979
3980 2016-10-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
3981
3982 * c-cppbuiltin.c: Include memmodel.h.
3983 * c-opts.c: Likewise.
3984 * c-pragma.c: Likewise.
3985 * c-warn.c: Likewise.
3986
3987 2016-10-12 Jakub Jelinek <jakub@redhat.com>
3988
3989 * c.opt (Wextra): Add as C/C++/ObjC/ObjC++ option.
3990 (Wimplicit-fallthrough=): Enable for these languages by -Wextra.
3991 * c-opts.c (sanitize_cpp_opts): Initialize
3992 cpp_opts->cpp_warn_implicit_fallthrough.
3993
3994 2016-10-11 Marek Polacek <polacek@redhat.com>
3995
3996 * c-common.c (warning_candidate_p): Change the return type to bool
3997 and return true/false instead of 1/0.
3998 (vector_mode_valid_p): Likewise.
3999
4000 2016-10-11 Marek Polacek <polacek@redhat.com>
4001
4002 * c-common.c (fold_for_warn): No longer static.
4003 (bool_promoted_to_int_p): Likewise.
4004 (c_common_get_narrower): Likewise.
4005 (constant_expression_warning): Move to c-warn.c.
4006 (constant_expression_error): Likewise.
4007 (overflow_warning): Likewise.
4008 (warn_logical_operator): Likewise.
4009 (find_array_ref_with_const_idx_r): Likewise.
4010 (warn_tautological_cmp): Likewise.
4011 (expr_has_boolean_operands_p): Likewise.
4012 (warn_logical_not_parentheses): Likewise.
4013 (warn_if_unused_value): Likewise.
4014 (strict_aliasing_warning): Likewise.
4015 (sizeof_pointer_memaccess_warning): Likewise.
4016 (check_main_parameter_types): Likewise.
4017 (conversion_warning): Likewise.
4018 (warnings_for_convert_and_check): Likewise.
4019 (match_case_to_enum_1): Likewise.
4020 (match_case_to_enum): Likewise.
4021 (c_do_switch_warnings): Likewise.
4022 (warn_for_omitted_condop): Likewise.
4023 (readonly_error): Likewise.
4024 (lvalue_error): Likewise.
4025 (invalid_indirection_error): Likewise.
4026 (warn_array_subscript_with_type_char): Likewise.
4027 (warn_about_parentheses): Likewise.
4028 (warn_for_unused_label): Likewise.
4029 (warn_for_div_by_zero): Likewise.
4030 (warn_for_memset): Likewise.
4031 (warn_for_sign_compare): Likewise.
4032 (do_warn_double_promotion): Likewise.
4033 (do_warn_unused_parameter): Likewise.
4034 (record_locally_defined_typedef): Likewise.
4035 (maybe_record_typedef_use): Likewise.
4036 (maybe_warn_unused_local_typedefs): Likewise.
4037 (maybe_warn_bool_compare): Likewise.
4038 (maybe_warn_shift_overflow): Likewise.
4039 (warn_duplicated_cond_add_or_warn): Likewise.
4040 (diagnose_mismatched_attributes): Likewise.
4041 * c-common.h: Move the declarations from c-warn.c to its own section.
4042 * c-warn.c: New file.
4043
4044 2016-10-08 Jason Merrill <jason@redhat.com>
4045
4046 * c-common.c (c_common_truthvalue_conversion): Don't distribute
4047 into COND_EXPR in C++.
4048
4049 2016-10-08 Jakub Jelinek <jakub@redhat.com>
4050
4051 * c-lex.c (c_lex_with_flags) <case CPP_COMMENT>: For CPP_COMMENT
4052 token with PREV_FALLTHROUGH, skip all following CPP_PADDING and
4053 CPP_COMMENT tokens and set add_flags to PREV_FALLTHROUGH afterwards.
4054
4055 2016-10-07 Jakub Jelinek <jakub@redhat.com>
4056
4057 Implement LWG2296 helper intrinsic
4058 * c-common.h (enum rid): Add RID_ADDRESSOF.
4059 * c-common.c (c_common_reswords): Add __builtin_addressof.
4060
4061 2016-10-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
4062
4063 PR c++/77700
4064 * c-common.c (c_common_truthvalue_conversion): Warn also for
4065 suspicious enum values in boolean context.
4066
4067 2016-10-06 Jakub Jelinek <jakub@redhat.com>
4068
4069 Implement P0258R2 - helper for C++17
4070 std::has_unique_object_representations trait
4071 * c-common.h (enum rid): Add RID_HAS_UNIQUE_OBJ_REPRESENTATIONS.
4072 * c-common.c (c_common_reswords): Add
4073 __has_unique_object_representations.
4074
4075 2016-10-05 Jakub Jelinek <jakub@redhat.com>
4076
4077 PR sanitizer/66343
4078 * c-ubsan.c (ubsan_instrument_return): Don't call
4079 initialize_sanitizer_builtins here.
4080
4081 2016-10-05 Bernd Edlinger <bernd.edlinger@hotmail.de>
4082
4083 * c-common.c (c_common_truthvalue_conversion): Warn also for suspicious
4084 conditional expression in boolean context when only one arm is
4085 non-boolean.
4086
4087 2016-10-05 Jakub Jelinek <jakub@redhat.com>
4088
4089 PR sanitizer/77823
4090 * c-ubsan.c (ubsan_instrument_shift): Return NULL_TREE if type0
4091 is not integral.
4092
4093 * c-common.c (c_common_reswords): Update comment for C++11.
4094
4095 2016-10-04 Jason Merrill <jason@redhat.com>
4096
4097 * c-common.c (make_tree_vector_from_ctor): New.
4098 * c-common.h: Declare it.
4099
4100 2016-10-04 Jakub Jelinek <jakub@redhat.com>
4101
4102 * c-cppbuiltin.c (c_cpp_builtins): Don't define
4103 __LIBGCC_JCR_SECTION_NAME__.
4104
4105 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
4106
4107 * c-common.c (c_common_truthvalue_conversion): Warn for suspicious
4108 left shift in boolean context.
4109
4110 2016-09-29 Jakub Jelinek <jakub@redhat.com>
4111
4112 Implement P0001R1 - C++17 removal of register storage class specifier
4113 * c.opt (Wregister): New warning.
4114 * c-opts.c (c_common_post_options): Enable -Wregister by
4115 default for C++17.
4116
4117 2016-09-29 James Greenhalgh <james.greenhalgh@arm.com>
4118
4119 * c-opts.c (c_common_post_options): Remove special case for
4120 TARGET_FLT_EVAL_METHOD_NON_DEFAULT with -fexcess-precision=standard
4121 in C++.
4122
4123 2016-09-27 Jakub Jelinek <jakub@redhat.com>
4124
4125 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_capture_star_this for
4126 -std=c++1z.
4127
4128 * c-ada-spec.c (print_ada_declaration): Remove break after return.
4129
4130 2016-09-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
4131
4132 * c-common.c: Include memmodel.h.
4133
4134 2016-09-26 Marek Polacek <polacek@redhat.com>
4135
4136 * c-lex.c (c_common_has_attribute): Handle attribute fallthrough.
4137
4138 2016-09-26 Marek Polacek <polacek@redhat.com>
4139
4140 PR c/7652
4141 * c-common.c (c_common_attribute_table): Add fallthrough attribute.
4142 (handle_fallthrough_attribute): New function.
4143 (attribute_fallthrough_p): New function.
4144 * c-common.h (attribute_fallthrough_p): Declare.
4145
4146 2016-09-24 Marek Polacek <polacek@redhat.com>
4147
4148 PR c/77490
4149 * c.opt (Wbool-operation): New.
4150
4151 2016-09-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
4152
4153 * c-common.c (c_common_truthvalue_conversion): Inhibit
4154 Wint-in-bool-context warning with from_macro_definition_at.
4155 Mention the expression will always evaluate to true.
4156
4157 2016-09-21 Martin Sebor <msebor@redhat.com>
4158
4159 PR bootstrap/77676
4160 * c.opt (fprintf-return-value): Temporarily initialize to zero
4161 to unblock bootstrap failures.
4162
4163 2016-09-21 Jakub Jelinek <jakub@redhat.com>
4164
4165 PR c++/77651
4166 * c.opt (Waligned-new=): Add RejectNegative.
4167 (faligned-new=): Likewise. Spelling fix - change
4168 aligned_new_threshhold to aligned_new_threshold.
4169 * c-cppbuiltin.c (c_cpp_builtins): Change aligned_new_threshhold
4170 to aligned_new_threshold.
4171
4172 2016-09-20 Martin Sebor <msebor@redhat.com>
4173
4174 PR middle-end/49905
4175 * c.opt: Add -Wformat-length and -fprintf-return-value.
4176
4177 2016-09-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
4178
4179 PR c++/77434
4180 * c.opt (Wint-in-bool-context): New warning.
4181 * c-common.c (c_common_truthvalue_conversion): Warn on integer
4182 constants in boolean context.
4183
4184 2016-09-19 Joseph Myers <joseph@codesourcery.com>
4185
4186 * c-common.c (max_align_t_align): Also consider alignment of
4187 float128_type_node.
4188
4189 2016-09-15 Jason Merrill <jason@redhat.com>
4190
4191 * c-common.c (check_cxx_fundamental_alignment_constraints): Check
4192 DECL_EXTERNAL.
4193
4194 2016-09-14 Jason Merrill <jason@redhat.com>
4195
4196 * c-common.c (check_cxx_fundamental_alignment_constraints): Don't
4197 limit FIELD_DECL, either.
4198
4199 2016-09-14 Marek Polacek <polacek@redhat.com>
4200
4201 * c-common.c (c_common_truthvalue_conversion): Use false instead of 0.
4202 * c-common.h (build_unary_op): Change nonconvert parameter type to bool.
4203 * c-omp.c (c_finish_omp_atomic): Use false instead of 0.
4204
4205 2016-09-13 David Malcolm <dmalcolm@redhat.com>
4206
4207 * c-common.c (warn_logical_not_parentheses): Replace
4208 rich_location::add_fixit_insert calls with add_fixit_insert_before
4209 and add_fixit_insert_after, eliminating the "next_loc" calculation.
4210
4211 2016-09-13 Jason Merrill <jason@redhat.com>
4212 Tom de Vries <tom@codesourcery.com>
4213
4214 PR c++/77427
4215 * c-common.c (set_underlying_type): Don't treat array as builtin type.
4216
4217 2016-09-13 Jason Merrill <jason@redhat.com>
4218
4219 * c-common.c (check_cxx_fundamental_alignment_constraints): Don't
4220 limit types at all.
4221
4222 2016-09-12 Jason Merrill <jason@redhat.com>
4223
4224 * c-common.c (check_cxx_fundamental_alignment_constraints): Fix
4225 bit/byte confusion, allow large alignment for types.
4226
4227 2016-09-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
4228
4229 PR c++/77496
4230 * c-common.c (warn_for_omitted_condop): Also warn for boolean data.
4231
4232 2016-09-12 David Malcolm <dmalcolm@redhat.com>
4233
4234 PR c/72858
4235 * c-format.c (argument_parser::check_argument_type): Add params
4236 "type_start" and "conversion_char". Use the former to generate
4237 offset_to_type_start and pass it and conversion_char to
4238 check_format_types.
4239 (check_format_info_main): Capture the start of the type
4240 information as "type_start", and pass it an format_char
4241 to arg_parser.check_argument_type.
4242 (check_format_types): Provide an example in the leading comment.
4243 Add params "offset_to_type_start" and "conversion_char"; pass
4244 them to format_type_warning calls.
4245 (test_get_modifier_for_format_len): Likewise.
4246 (matching_type_p): New function.
4247 (get_format_for_type): Add param "conversion_char" and move
4248 implementation into...
4249 (get_format_for_type_1): ...new function, called twice.
4250 Use new function matching_type_p rather than checking for
4251 TYPE_CANONICAL equality.
4252 (get_corrected_substring): New function.
4253 (format_type_warning): Provide an example in the leading comment.
4254 Add params "offset_to_type_start" and "conversion_char". Replace
4255 call to get_format_for_type with call to get_corrected_substring
4256 and move rejection of hints for widths/precisions there.
4257 (assert_format_for_type_streq): Add param "conversion_char".
4258 (ASSERT_FORMAT_FOR_TYPE_STREQ): Add param CONVERSION_CHAR.
4259 (test_get_format_for_type_printf): Add conversion chars to the
4260 tests, adding coverage for various combinations of integer
4261 vs double conversions, and for preserving octal and hexadecimal
4262 conversions.
4263 (test_get_format_for_type_scanf): Add conversion chars to the
4264 tests.
4265
4266 2016-09-10 Tom de Vries <tom@codesourcery.com>
4267
4268 PR C/71602
4269 * c-common.c (build_va_arg): Handle more strict
4270 targetm.canonical_va_list_type. Replace first argument type error with
4271 assert.
4272
4273 2016-09-09 Martin Sebor <msebor@redhat.com>
4274
4275 PR c/77520
4276 PR c/77521
4277 * c-format.c (argument_parser::find_format_char_info): Use %qc
4278 format directive unconditionally.
4279
4280 2016-09-09 Jason Merrill <jason@redhat.com>
4281
4282 Implement C++17 new of over-aligned types.
4283 * c.opt: Add -faligned-new and -Waligned-new.
4284 * c-common.c (max_align_t_align): Split out from...
4285 (cxx_fundamental_alignment_p): ...here.
4286 * c-common.h: Declare it.
4287 * c-cppbuiltin.c (c_cpp_builtins): Handle aligned new.
4288
4289 2016-09-09 Joseph Myers <joseph@codesourcery.com>
4290
4291 * c-cppbuiltin.c (builtin_define_type_width): New function.
4292 (builtin_define_stdint_macros, c_cpp_builtins): Define type width
4293 macros.
4294
4295 2016-09-07 David Malcolm <dmalcolm@redhat.com>
4296
4297 * c-common.c (get_cpp_ttype_from_string_type): Handle being passed
4298 a POINTER_TYPE.
4299 (substring_loc::get_location): Move to substring-locations.c,
4300 keeping implementation as...
4301 (c_get_substring_location): New function, from the above, reworked
4302 to use accessors rather than member lookup.
4303 * c-common.h (class substring_loc): Move to substring-locations.h,
4304 replacing with a forward decl.
4305 (c_get_substring_location): New decl.
4306 * c-format.c: Include "substring-locations.h".
4307 (format_warning_va): Move to substring-locations.c.
4308 (format_warning_at_substring): Likewise.
4309
4310 2016-09-06 Martin Sebor <msebor@redhat.com>
4311
4312 PR c/77336
4313 * c-format.c (check_function_format): Avoid issuing warnings for
4314 functions unless they call format functions with non-constant
4315 format strings.
4316
4317 2016-09-06 Richard Biener <rguenther@suse.de>
4318
4319 PR c/77450
4320 * c-common.c (c_common_mark_addressable_vec): Handle
4321 COMPOUND_LITERAL_EXPR.
4322
4323 2016-09-05 Marek Polacek <polacek@redhat.com>
4324
4325 PR c/77423
4326 * c-common.c (bool_promoted_to_int_p): New function.
4327 (expr_has_boolean_operands_p): New function.
4328 (warn_logical_not_parentheses): Return if expr_has_boolean_operands_p.
4329 (maybe_warn_bool_compare): Use bool_promoted_to_int_p.
4330
4331 2016-09-04 Tom de Vries <tom@codesourcery.com>
4332
4333 revert:
4334 2016-08-29 Tom de Vries <tom@codesourcery.com>
4335
4336 * c-common.c (build_va_arg): Replace first argument type error
4337 with assert.
4338
4339 2016-09-02 Jakub Jelinek <jakub@redhat.com>
4340
4341 PR c/65467
4342 * c-omp.c (c_finish_omp_atomic): Reject _Atomic qualified expressions.
4343 (c_finish_omp_for): Reject _Atomic qualified iterators.
4344
4345 2016-09-01 Martin Sebor <msebor@redhat.com>
4346
4347 * c-ada-spec.c (dump_ada_function_declaration): Increase buffer
4348 size to guarantee it fits the output of the formatted function
4349 regardless of its arguments.
4350
4351 2016-09-01 Marek Polacek <polacek@redhat.com>
4352
4353 PR c/7652
4354 * c-common.c (resolve_overloaded_builtin): Fix formatting. Add
4355 FALLTHRU comments.
4356
4357 2016-08-29 Marek Polacek <polacek@redhat.com>
4358
4359 PR c/77292
4360 * c-common.c (warn_logical_not_parentheses): Don't warn for
4361 a comparison or a logical operator.
4362
4363 2016-08-29 Tom de Vries <tom@codesourcery.com>
4364
4365 * c-common.c (build_va_arg): Fix type comparison assert.
4366
4367 2016-08-29 Tom de Vries <tom@codesourcery.com>
4368
4369 * c-common.c (build_va_arg): Replace first argument type error
4370 with assert.
4371
4372 2016-08-29 Tom de Vries <tom@codesourcery.com>
4373
4374 PR c/77398
4375 * c-common.c (build_va_arg): Add first argument error. Build va_arg
4376 with error_mark_node as va_list instead of with illegal va_list.
4377
4378 2016-08-25 Marek Polacek <polacek@redhat.com>
4379 David Malcolm <dmalcolm@redhat.com>
4380
4381 * c-common.c (warn_logical_not_parentheses): Print fixit hints.
4382 * c-common.h (warn_logical_not_parentheses): Update declaration.
4383
4384 2016-08-22 Marek Polacek <polacek@redhat.com>
4385
4386 PR c++/77321
4387 * c-common.c (warn_for_memset): Check type for null.
4388
4389 2016-08-22 Joseph Myers <joseph@codesourcery.com>
4390
4391 * c-cppbuiltin.c (c_cpp_builtins): Check _FloatN and
4392 _FloatNx types for suffixes for built-in functions.
4393
4394 2016-08-19 Joseph Myers <joseph@codesourcery.com>
4395
4396 PR c/32187
4397 * c-common.h (RID_FLOAT16, RID_FLOATN_NX_FIRST, RID_FLOAT32)
4398 (RID_FLOAT64, RID_FLOAT128, RID_FLOAT32X, RID_FLOAT64X)
4399 (RID_FLOAT128X): New enum rid values.
4400 (CASE_RID_FLOATN_NX): New macro.
4401 * c-common.c (c_common_reswords): Add _FloatN and _FloatNx
4402 keywords.
4403 (c_common_type_for_mode): Check for _FloatN and _FloatNx and
4404 corresponding complex types.
4405 (c_common_nodes_and_builtins): For non-C++, register _FloatN and
4406 _FloatNx and corresponding complex types.
4407 (keyword_begins_type_specifier): Use CASE_RID_FLOATN_NX.
4408 * c-cppbuiltin.c (builtin_define_float_constants): Check _FloatN
4409 and _FloatNx types for the widest type for determining
4410 DECIMAL_DIG. Define __LDBL_DECIMAL_DIG__ as well as
4411 __DECIMAL_DIG__ for long double. Handle FMA_SUFFIX being NULL.
4412 (c_cpp_builtins): Call builtin_define_float_constants for _FloatN
4413 and _FloatNx types.
4414 * c-lex.c (interpret_float): Handle _FloatN and _FloatNx
4415 constants.
4416 * c-pretty-print.c (pp_c_floating_constant): Handle _FloatN and
4417 _FloatNx types.
4418
4419 2016-08-18 David Malcolm <dmalcolm@redhat.com>
4420
4421 * c-opts.c (c_diagnostic_finalizer): Update for change to
4422 diagnostic_show_locus.
4423
4424 2016-08-18 David Malcolm <dmalcolm@redhat.com>
4425
4426 * c-common.c: Include "spellcheck.h".
4427 (cb_get_suggestion): New function.
4428 * c-common.h (cb_get_suggestion): New decl.
4429 * c-lex.c (init_c_lex): Initialize cb->get_suggestion to
4430 cb_get_suggestion.
4431
4432 2016-08-18 Marek Polacek <polacek@redhat.com>
4433
4434 PR c/71514
4435 * c-common.c (get_atomic_generic_size): Disallow pointer-to-function
4436 and pointer-to-VLA.
4437
4438 2016-08-16 David Malcolm <dmalcolm@redhat.com>
4439
4440 PR c/72857
4441 * c-common.c (substring_loc::get_range): Rename to...
4442 (substring_loc::get_location): ...this, converting param from a
4443 source_range * to a location_t *. Call
4444 get_source_location_for_substring rather than
4445 get_source_range_for_substring, and pass in m_caret_idx.
4446 * c-common.h (substring_loc::substring_loc): Add param "caret_idx".
4447 (substring_loc::get_range): Replace with...
4448 (substring_loc::get_location): ...this.
4449 (substring_loc::set_caret_index): New method.
4450 (substring_loc): Add field m_caret_idx.
4451 * c-format.c (format_warning_va): Update for above changes.
4452 Rename local "substring_loc" to "fmt_substring_loc" to avoid
4453 clashing with type name.
4454 (format_warning_at_char): Add caret_idx param to substring_loc ctor.
4455 (check_argument_type): Likewise.
4456 (format_type_warning): Rename param "fmt_loc" to "whole_fmt_loc"
4457 Use a copy when emitting warnings, setting the caret index from TYPE.
4458
4459 2016-08-16 Eric Botcazou <ebotcazou@adacore.com>
4460 Arnaud Charlet <charlet@adacore.com>
4461
4462 * c-ada-spec.c (dump_number): New function.
4463 (handle_escape_character): Likewise.
4464 (print_ada_macros): Add handling of constant integers and strings.
4465
4466 2016-08-12 Marek Polacek <polacek@redhat.com>
4467
4468 PR c/7652
4469 * c-common.c (scalar_to_vector): Adjust fall through comment.
4470 * c-opts.c (c_common_handle_option): Likewise.
4471 * c-pragma.c (handle_pragma_pack): Add FALLTHRU.
4472 * c-pretty-print.c (c_pretty_printer::postfix_expression): Adjust
4473 fall through comment.
4474 * cilk.c (extract_free_variables): Add FALLTHRU.
4475
4476 2016-08-10 Jason Merrill <jason@redhat.com>
4477
4478 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_if_constexpr.
4479
4480 2016-08-09 Jason Merrill <jason@redhat.com>
4481
4482 * c-common.c (c_common_attribute_table): vector_size affects type
4483 identity.
4484
4485 2016-08-09 Marek Polacek <polacek@redhat.com>
4486
4487 PR c/7652
4488 * c-ada-spec.c (dump_generic_ada_node): Add return.
4489
4490 2016-08-09 Jason Merrill <jason@redhat.com>
4491
4492 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_constexpr for
4493 C++17 constexpr lambdas.
4494
4495 2016-08-08 David Malcolm <dmalcolm@redhat.com>
4496
4497 PR c/64955
4498 * c-common.h (selftest::c_format_c_tests): New declaration.
4499 (selftest::run_c_tests): New declaration.
4500 * c-format.c: Include "selftest.h.
4501 (format_warning_va): Add param "corrected_substring" and use
4502 it to add a replacement fix-it hint.
4503 (format_warning_at_substring): Likewise.
4504 (format_warning_at_char): Update for new param of
4505 format_warning_va.
4506 (argument_parser::check_argument_type): Pass "fki" to
4507 check_format_types.
4508 (check_format_types): Add param "fki" and pass it to
4509 format_type_warning.
4510 (deref_n_times): New function.
4511 (get_modifier_for_format_len): New function.
4512 (selftest::test_get_modifier_for_format_len): New function.
4513 (get_format_for_type): New function.
4514 (format_type_warning): Add param "fki" and use it to attempt
4515 to provide hints for argument types when calling
4516 format_warning_at_substring.
4517 (selftest::get_info): New function.
4518 (selftest::assert_format_for_type_streq): New function.
4519 (ASSERT_FORMAT_FOR_TYPE_STREQ): New macro.
4520 (selftest::test_get_format_for_type_printf): New function.
4521 (selftest::test_get_format_for_type_scanf): New function.
4522 (selftest::c_format_c_tests): New function.
4523
4524 2016-08-08 David Malcolm <dmalcolm@redhat.com>
4525
4526 PR c/52952
4527 * c-format.c: Include "diagnostic.h".
4528 (location_column_from_byte_offset): Delete.
4529 (location_from_offset): Delete.
4530 (format_warning_va): New function.
4531 (format_warning_at_substring): New function.
4532 (format_warning_at_char): New function.
4533 (check_format_arg): Capture location of format_tree and pass to
4534 check_format_info_main.
4535 (argument_parser): Add fields "start_of_this_format" and
4536 "format_string_cst".
4537 (flag_chars_t::validate): Add param "format_string_cst". Convert
4538 warning_at call using location_from_offset to call to
4539 format_warning_at_char.
4540 (argument_parser::argument_parser): Add param "format_string_cst_"
4541 and use use it to initialize field "format_string_cst".
4542 Initialize new field "start_of_this_format".
4543 (argument_parser::read_format_flags): Convert warning_at call
4544 using location_from_offset to a call to format_warning_at_char.
4545 (argument_parser::read_any_format_left_precision): Likewise.
4546 (argument_parser::read_any_format_precision): Likewise.
4547 (argument_parser::read_any_other_modifier): Likewise.
4548 (argument_parser::find_format_char_info): Likewise, in three places.
4549 (argument_parser::parse_any_scan_set): Likewise, in one place.
4550 (argument_parser::handle_conversions): Likewise, in two places.
4551 (argument_parser::check_argument_type): Add param "fmt_param_loc"
4552 and use it to make a substring_loc. Pass the latter to
4553 check_format_types.
4554 (check_format_info_main): Add params "fmt_param_loc" and
4555 "format_string_cst". Convert warning_at calls using
4556 location_from_offset to calls to format_warning_at_char. Pass the
4557 new params to the arg_parser ctor. Pass "format_string_cst" to
4558 flag_chars.validate. Pass "fmt_param_loc" to
4559 arg_parser.check_argument_type.
4560 (check_format_types): Convert first param from a location_t
4561 to a const substring_loc & and rename to "fmt_loc". Attempt
4562 to extract the range of the relevant parameter and pass it
4563 to format_type_warning.
4564 (format_type_warning): Convert first param from a location_t
4565 to a const substring_loc & and rename to "fmt_loc". Add
4566 params "param_range" and "type". Replace calls to warning_at
4567 with calls to format_warning_at_substring.
4568
4569 2016-08-08 David Malcolm <dmalcolm@redhat.com>
4570
4571 * c-format.c (class flag_chars_t): New class.
4572 (struct length_modifier): New struct.
4573 (class argument_parser): New class.
4574 (flag_chars_t::flag_chars_t): New ctor.
4575 (flag_chars_t::has_char_p): New method.
4576 (flag_chars_t::add_char): New method.
4577 (flag_chars_t::validate): New method.
4578 (flag_chars_t::get_alloc_flag): New method.
4579 (flag_chars_t::assignment_suppression_p): New method.
4580 (argument_parser::argument_parser): New ctor.
4581 (argument_parser::read_any_dollar): New method.
4582 (argument_parser::read_format_flags): New method.
4583 (argument_parser::read_any_format_width): New method.
4584 (argument_parser::read_any_format_left_precision): New method.
4585 (argument_parser::read_any_format_precision): New method.
4586 (argument_parser::handle_alloc_chars): New method.
4587 (argument_parser::read_any_length_modifier): New method.
4588 (argument_parser::read_any_other_modifier): New method.
4589 (argument_parser::find_format_char_info): New method.
4590 (argument_parser::validate_flag_pairs): New method.
4591 (argument_parser::give_y2k_warnings): New method.
4592 (argument_parser::parse_any_scan_set): New method.
4593 (argument_parser::handle_conversions): New method.
4594 (argument_parser::check_argument_type): New method.
4595 (check_format_info_main): Introduce classes argument_parser
4596 and flag_chars_t, moving the code within the loop into methods
4597 of these classes. Make various locals "const".
4598
4599 2016-08-05 David Malcolm <dmalcolm@redhat.com>
4600
4601 * c-common.c: Include "substring-locations.h".
4602 (get_cpp_ttype_from_string_type): New function.
4603 (g_string_concat_db): New global.
4604 (substring_loc::get_range): New method.
4605 * c-common.h (g_string_concat_db): New declaration.
4606 (class substring_loc): New class.
4607 * c-lex.c (lex_string): When concatenating strings, capture the
4608 locations of all tokens using a new obstack, and record the
4609 concatenation locations within g_string_concat_db.
4610 * c-opts.c (c_common_init_options): Construct g_string_concat_db
4611 on the ggc-heap.
4612
4613 2016-07-29 Marek Polacek <polacek@redhat.com>
4614
4615 PR c/71926
4616 * c-common.c (c_common_truthvalue_conversion): Use LOCATION for the
4617 parentheses warning.
4618
4619 PR c/71574
4620 * c-common.c (handle_alloc_align_attribute): Also check FUNCTION_DECL.
4621
4622 2016-07-28 Martin Liska <mliska@suse.cz>
4623
4624 PR gcov-profile/68025
4625 * c-common.c (handle_no_profile_instrument_function_attribute):
4626
4627 2016-07-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
4628
4629 * c-common.c (check_user_alignment): Use LOG2_BITS_PER_UNIT instead of
4630 BITS_PER_UNIT_LOG.
4631
4632 2016-07-25 Jason Merrill <jason@redhat.com>
4633
4634 PR c++/65970
4635 * c.opt (fconstexpr-loop-limit): New.
4636
4637 2016-07-22 Martin Sebor <msebor@redhat.com>
4638
4639 PR c++/71675
4640 * c-common.c (resolve_overloaded_builtin): Avoid converting
4641 __atomic_compare_exchange_n return type to that of what its
4642 first argument points to.
4643
4644 2016-07-22 Uros Bizjak <ubizjak@gmail.com>
4645
4646 * c-common.c: Use HOST_WIDE_INT_M1U instead of
4647 ~(unsigned HOST_WIDE_INT) 0.
4648
4649 2016-07-22 Martin Liska <mliska@suse.cz>
4650
4651 PR gcov-profile/69028
4652 PR gcov-profile/62047
4653 * cilk.c (create_cilk_helper_decl): Set location of a new decl
4654 to the current_function_decl.
4655
4656 2016-07-21 Jason Merrill <jason@redhat.com>
4657
4658 PR c++/65168
4659 * c-common.c (c_common_truthvalue_conversion): Check
4660 c_inhibit_evaluation_warnings for warning about address of
4661 reference.
4662
4663 2016-07-20 David Malcolm <dmalcolm@redhat.com>
4664
4665 * c-common.h (lookup_name_fuzzy): Convert return type from tree to
4666 const char *.
4667
4668 2016-07-15 Jason Merrill <jason@redhat.com>
4669
4670 * c-opts.c (c_common_post_options): Update -fabi-version default to 11.
4671
4672 2016-07-15 Jakub Jelinek <jakub@redhat.com>
4673
4674 PR c/71858
4675 * c-common.h (enum lookup_name_fuzzy_kind): Add
4676 FUZZY_LOOKUP_FUNCTION_NAME.
4677
4678 2016-07-08 Jason Merrill <jason@redhat.com>
4679
4680 P0145: Refining Expression Order for C++.
4681 * c.opts (-fargs-in-order): Rename to -fstrong-eval-order.
4682 * c-opts.c: Adjust.
4683
4684 2016-07-05 Markus Trippelsdorf <markus@trippelsdorf.de>
4685
4686 PR c++/71214
4687 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_rvalue_references.
4688
4689 2016-06-29 Thomas Schwinge <thomas@codesourcery.com>
4690
4691 * c-pragma.h (enum pragma_kind): Rename
4692 PRAGMA_OMP_DECLARE_REDUCTION to PRAGMA_OMP_DECLARE. Adjust all
4693 users.
4694
4695 2016-06-29 Richard Biener <rguenther@suse.de>
4696
4697 PR middle-end/71002
4698 * c-common.c (c_common_get_alias_set): Remove union type punning case.
4699
4700 2016-06-24 Jason Merrill <jason@redhat.com>
4701
4702 P0145R2: Refining Expression Order for C++.
4703 * c-common.c (verify_tree) [COMPOUND_EXPR]: Fix handling on LHS of
4704 MODIFY_EXPR.
4705
4706 2016-06-24 Jakub Jelinek <jakub@redhat.com>
4707
4708 * c-common.c (check_builtin_function_arguments): Require last
4709 argument of BUILT_IN_*_OVERFLOW_P to have INTEGER_TYPE type.
4710 Adjust wording of diagnostics for BUILT_IN_*_OVERLFLOW
4711 if the last argument is pointer to enumerated or boolean type.
4712
4713 2016-06-22 David Malcolm <dmalcolm@redhat.com>
4714
4715 PR c/70339
4716 * c-common.h (enum lookup_name_fuzzy_kind): New enum.
4717 (lookup_name_fuzzy): New prototype.
4718
4719 2016-06-21 John David Anglin <danglin@gcc.gnu.org>
4720
4721 * c-common.c (get_source_date_epoch): Use int64_t instead of long long.
4722
4723 2016-06-14 Jason Merrill <jason@redhat.com>
4724
4725 P0145R2: Refining Expression Order for C++.
4726 * c.opt (fargs-in-order): New.
4727 * c-opts.c (c_common_post_options): Adjust flag_args_in_order.
4728
4729 2016-06-13 Jakub Jelinek <jakub@redhat.com>
4730
4731 PR sanitizer/71498
4732 * c-gimplify.c (ubsan_walk_array_refs_r): Set *walk_subtrees = 0 on
4733 all BIND_EXPRs, and on all BIND_EXPRs recurse also on BIND_EXPR_BODY.
4734
4735 PR preprocessor/71183
4736 * c-ppoutput.c (init_pp_output): Set cb->get_source_date_epoch
4737 to cb_get_source_date_epoch.
4738
4739 2016-06-10 Jakub Jelinek <jakub@redhat.com>
4740
4741 PR c/68657
4742 * c.opt (Wpsabi): Add Warning flag.
4743
4744 2016-06-10 Martin Sebor <msebor@redhat.com>
4745
4746 PR c/71392
4747 * c-common.c (handle_nonnull_attribute): Accept
4748 the nonnull attribute in type-generic builtins.
4749
4750 2016-06-09 Martin Sebor <msebor@redhat.com>
4751
4752 PR c/70883
4753 * c-common.c (builtin_function_validate_nargs): Make text of error
4754 message consistent with others like it.
4755
4756 2016-06-08 Martin Sebor <msebor@redhat.com>
4757 Jakub Jelinek <jakub@redhat.com>
4758
4759 PR c++/70507
4760 PR c/68120
4761 * c-common.c (check_builtin_function_arguments): Handle
4762 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
4763
4764 2016-06-08 Richard Biener <rguenther@suse.de>
4765
4766 * c-common.c (parse_optimize_options): Improve diagnostic messages.
4767
4768 2016-06-07 Richard Biener <rguenther@suse.de>
4769
4770 PR c/61564
4771 * c-common.c (parse_optimize_options): Only apply CL_OPTIMIZATION
4772 options and warn about others.
4773
4774 2016-06-01 Eduard Sanou <dhole@openmailbox.org>
4775
4776 * c-common.c (get_source_date_epoch): Rename to
4777 cb_get_source_date_epoch.
4778 * c-common.c (cb_get_source_date_epoch): Use a single generic erorr
4779 message when the parsing fails. Use error_at instead of fatal_error.
4780 * c-common.h (get_source_date_epoch): Rename to
4781 cb_get_source_date_epoch.
4782 * c-common.h (cb_get_source_date_epoch): Prototype.
4783 * c-common.h (MAX_SOURCE_DATE_EPOCH): Define.
4784 * c-common.h (c_omp_region_type): Remove trailing comma.
4785 * c-lex.c (init_c_lex): Set cb->get_source_date_epoch callback.
4786 * c-lex.c (c_lex_with_flags): Remove initialization of
4787 pfile->source_date_epoch.
4788
4789 2016-05-30 Jakub Jelinek <jakub@redhat.com>
4790
4791 PR c++/71349
4792 * c-omp.c (c_omp_split_clauses): Put OMP_CLAUSE_DEPEND to
4793 C_OMP_CLAUSE_SPLIT_TARGET. Put OMP_CLAUSE_NOWAIT to
4794 C_OMP_CLAUSE_SPLIT_TARGET if combined with target construct,
4795 instead of C_OMP_CLAUSE_SPLIT_FOR.
4796
4797 2016-05-24 Richard Biener <rguenther@suse.de>
4798
4799 PR middle-end/70434
4800 PR c/69504
4801 * c-common.h (convert_vector_to_pointer_for_subscript): Rename to ...
4802 (convert_vector_to_array_for_subscript): ... this.
4803 * c-common.c (convert_vector_to_pointer_for_subscript): Use a
4804 VIEW_CONVERT_EXPR to an array type. Rename to ...
4805 (convert_vector_to_array_for_subscript): ... this.
4806
4807 2016-05-12 Marek Polacek <polacek@redhat.com>
4808
4809 PR c/70756
4810 * c-common.c (pointer_int_sum): Call size_in_bytes_loc instead of
4811 size_in_bytes and pass LOC to it.
4812
4813 2016-05-11 Mikhail Maltsev <maltsevm@gmail.com>
4814
4815 PR c/43651
4816 * c.opt (Wduplicate-decl-specifier): New option.
4817
4818 2016-05-11 Marek Polacek <polacek@redhat.com>
4819
4820 PR c++/71024
4821 * c-common.c (diagnose_mismatched_attributes): New function.
4822 * c-common.h (diagnose_mismatched_attributes): Declare.
4823
4824 2016-05-04 Marek Polacek <polacek@redhat.com>
4825
4826 * c.opt (Wdangling-else): New option.
4827
4828 2016-05-03 Marek Polacek <polacek@redhat.com>
4829
4830 PR c/70859
4831 * c-common.c (builtin_function_validate_nargs): Add location
4832 parameter. Use it.
4833 (check_builtin_function_arguments): Add location and arguments
4834 parameters. Use them.
4835 * c-common.h (check_builtin_function_arguments): Update declaration.
4836
4837 2016-05-03 Richard Biener <rguenther@suse.de>
4838
4839 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): Do not
4840 allow call args to gimplify to SSA names.
4841
4842 2016-05-03 Marek Polacek <polacek@redhat.com>
4843
4844 * c-common.h (enum c_omp_region_type): Remove stray comma.
4845
4846 2016-05-02 Cesar Philippidis <cesar@codesourcery.com>
4847
4848 * c-common.h (enum c_omp_region_type): Define.
4849
4850 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
4851
4852 * c-common.c (shorten_compare): Use wi::to_wide.
4853
4854 2016-04-29 Cesar Philippidis <cesar@codesourcery.com>
4855
4856 PR middle-end/70626
4857 * c-common.h (c_oacc_split_loop_clauses): Add boolean argument.
4858 * c-omp.c (c_oacc_split_loop_clauses): Use it to duplicate
4859 reduction clauses in acc parallel loops.
4860
4861 2016-04-29 Marek Polacek <polacek@redhat.com>
4862
4863 PR c/70852
4864 * c-common.c (warn_for_memset): Check domain before accessing it.
4865
4866 2016-04-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
4867
4868 PR/69089
4869 * c-common.c (handle_aligned_attribute): Allow 0 as an argument to the
4870 "aligned" attribute.
4871
4872 2016-04-28 Jason Merrill <jason@redhat.com>
4873
4874 * c-lex.c (c_common_has_attribute): Handle nodiscard.
4875
4876 2016-04-28 Eduard Sanou <dhole@openmailbox.org>
4877 Matthias Klose <doko@debian.org>
4878
4879 * c-common.c (get_source_date_epoch): New function, gets the environment
4880 variable SOURCE_DATE_EPOCH and parses it as long long with error
4881 handling.
4882 * c-common.h (get_source_date_epoch): Prototype.
4883 * c-lex.c (c_lex_with_flags): set parse_in->source_date_epoch.
4884
4885 2015-04-27 Ryan Burn <contact@rnburn.com>
4886
4887 PR c++/69024
4888 PR c++/68997
4889 * cilk.c (cilk_ignorable_spawn_rhs_op): Change to external linkage.
4890 (cilk_recognize_spawn): Renamed from recognize_spawn and change to
4891 external linkage.
4892 (cilk_detect_and_unwrap): Corresponding changes.
4893 (extract_free_variables): Don't extract free variables from
4894 AGGR_INIT_EXPR slot.
4895 * c-common.h (cilk_ignorable_spawn_rhs_op): Prototype.
4896 (cilk_recognize_spawn): Likewise.
4897
4898 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
4899
4900 * c.opt (Wmemset-elt-size): New option.
4901 * c-common.c (warn_for_memset): New function.
4902 * c-common.h (warn_for_memset): Declare.
4903
4904 2016-04-25 Jason Merrill <jason@redhat.com>
4905
4906 * c-common.c (handle_unused_attribute): Accept CONST_DECL.
4907 No longer static.
4908 * c-common.h: Declare it.
4909 * c-lex.c (c_common_has_attribute): Add maybe_unused.
4910
4911 2016-04-22 Jason Merrill <jason@redhat.com>
4912
4913 * c-cppbuiltin.c (c_cpp_builtins): Fix __cpp_range_based_for.
4914
4915 2016-04-20 Ilya Verbin <ilya.verbin@intel.com>
4916
4917 PR c++/69363
4918 * c-cilkplus.c (c_finish_cilk_clauses): Remove function.
4919 * c-common.h (c_finish_cilk_clauses): Remove declaration.
4920
4921 2016-04-18 Michael Matz <matz@suse.de>
4922
4923 * c-common.c (handle_aligned_attribute): Use SET_TYPE_ALIGN
4924 and SET_DECL_ALIGN.
4925
4926 2016-04-17 Eric Botcazou <ebotcazou@adacore.com>
4927
4928 * c-ada-spec.c (get_underlying_decl): Return the typedef, if any.
4929 (dump_generic_ada_node) <POINTER_TYPE>: Clean up handling of access
4930 to incomplete types.
4931 (dump_nested_type): Remove redundant tests and tidy up.
4932 (print_ada_declaration): Also set TREE_VISITED on the declaration of
4933 a type which is the typedef of an original type.
4934
4935 2016-04-15 Marek Polacek <polacek@redhat.com>
4936
4937 PR c/70651
4938 * c-common.c (build_va_arg): Change two asserts into errors and return
4939 error_mark_node.
4940
4941 2016-04-13 Marek Polacek <polacek@redhat.com>
4942
4943 PR c++/70639
4944 * c-indentation.c (should_warn_for_misleading_indentation): Bail out
4945 for switch statements, too.
4946
4947 2016-03-28 Jason Merrill <jason@redhat.com>
4948
4949 * c-cppbuiltin.c (c_cpp_builtins): Update __cpp_range_based_for.
4950
4951 2016-03-23 Marek Polacek <polacek@redhat.com>
4952
4953 PR c++/69884
4954 * c.opt (Wignored-attributes): New option.
4955
4956 2016-03-22 David Malcolm <dmalcolm@redhat.com>
4957
4958 PR c/69993
4959 * c-indentation.c (warn_for_misleading_indentation): Rewrite the
4960 diagnostic text, reversing the order of the warning and note so
4961 that they appear in source order.
4962
4963 2016-03-17 Marek Polacek <polacek@redhat.com>
4964
4965 PR c/69407
4966 * c-common.c (resolve_overloaded_builtin): Set TREE_USED for the fetch
4967 operations.
4968
4969 2016-03-14 Jason Merrill <jason@redhat.com>
4970
4971 * c-cppbuiltin.c (c_cpp_builtins): Set __cpp_hex_float.
4972
4973 * c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_range_based_for.
4974
4975 2016-03-09 Richard Biener <rguenther@suse.de>
4976
4977 PR c/70143
4978 * c-common.c (strict_aliasing_warning): Add back
4979 alias_sets_conflict_p check.
4980
4981 2016-03-08 Jason Merrill <jason@redhat.com>
4982
4983 * c-opts.c (set_std_cxx1z): Don't enable concepts.
4984
4985 2016-03-04 David Malcolm <dmalcolm@redhat.com>
4986
4987 PR c/68187
4988 * c-indentation.c (get_visual_column): Move code to determine next
4989 tab stop to...
4990 (next_tab_stop): ...this new function.
4991 (line_contains_hash_if): Delete function.
4992 (detect_preprocessor_logic): Delete function.
4993 (get_first_nws_vis_column): New function.
4994 (detect_intervening_unindent): New function.
4995 (should_warn_for_misleading_indentation): Replace call to
4996 detect_preprocessor_logic with a call to
4997 detect_intervening_unindent.
4998
4999 2016-03-04 David Malcolm <dmalcolm@redhat.com>
5000
5001 PR c/68187
5002 * c-indentation.c (should_warn_for_misleading_indentation): When
5003 suppressing warnings about cases where the guard and body are on
5004 the same column, only use the first non-whitespace column in place
5005 of the guard token column when dealing with "else" clauses.
5006 When rejecting aligned BODY and NEXT, loosen the requirement
5007 from equality with the first non-whitespace of guard to simply
5008 that they not be indented relative to it.
5009
5010 2016-03-04 Richard Biener <rguenther@suse.de>
5011
5012 PR c++/70054
5013 * c-common.c (strict_aliasing_warning): Use alias_set_subset_of
5014 instead of alias_sets_conflict_p.
5015
5016 2016-03-01 Marek Polacek <polacek@redhat.com>
5017
5018 PR c++/69795
5019 * c-common.c (reject_gcc_builtin): Check for FUNCTION_DECL rather than
5020 any DECL.
5021
5022 2016-02-22 Martin Sebor <msebor@redhat.com>
5023
5024 PR middle-end/69780
5025 * c-common.c (check_builtin_function_arguments): Validate and
5026 reject invalid arguments to __builtin_alloca_with_align.
5027
5028 2016-02-20 Mark Wielaard <mjw@redhat.com>
5029
5030 PR c/28901
5031 * c.opt (Wunused-const-variable): Turn into Alias for...
5032 (Wunused-const-variable=): New option.
5033
5034 2016-02-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
5035
5036 PR c++/69865
5037 * c-opts.c (c_common_post_options): Move call to set_std_cxx14 from
5038 here...
5039 (c_common_init_options): ...to here.
5040 (set_std_cxx98): Initialize flag_isoc94 and flag_isoc99.
5041
5042 2016-02-19 Jakub Jelinek <jakub@redhat.com>
5043
5044 PR c++/69826
5045 * c-pragma.c (c_pp_lookup_pragma): Handle PRAGMA_CILK_GRAINSIZE.
5046 (init_pragma): Register PRAGMA_CILK_GRAINSIZE even for
5047 flag_preprocess_only.
5048
5049 2016-02-16 Jakub Jelinek <jakub@redhat.com>
5050
5051 PR c/69835
5052 * c.opt (Wnonnull-compare): Enable for -Wall.
5053
5054 2016-02-15 Jakub Jelinek <jakub@redhat.com>
5055
5056 PR c++/69797
5057 * c-common.c (sync_resolve_size): Diagnose too few arguments
5058 even when params is non-NULL empty vector.
5059
5060 2016-02-08 Bernd Schmidt <bschmidt@redhat.com>
5061
5062 PR target/60410
5063 * c.opt (fshort-double): Remove.
5064
5065 2016-02-05 Martin Sebor <msebor@redhat.com>
5066
5067 PR c++/69662
5068 * c.opt (Warning options): Update -Wplacement-new to take
5069 an optional argument.
5070
5071 2016-02-01 Jakub Jelinek <jakub@redhat.com>
5072
5073 PR preprocessor/69543
5074 PR c/69558
5075 * c-pragma.c (handle_pragma_diagnostic): Pass input_location
5076 instead of loc to control_warning_option.
5077
5078 2016-02-01 Nathan Sidwell <nathan@codesourcery.com>
5079
5080 * c.opt (fopenacc-dim=): New option.
5081
5082 2016-01-27 Ryan Burn <contact@rnburn.com>
5083
5084 PR cilkplus/69267
5085 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): Change to use
5086 gimplify_arg. Removed superfluous post_p argument.
5087 * c-family.h (cilk_gimplify_call_params_in_spawned_fn): Removed
5088 superfluous post_p argument.
5089 * c-gimplify.c (c_gimplify_expr): Likewise.
5090
5091 2016-01-26 David Malcolm <dmalcolm@redhat.com>
5092
5093 PR other/69006
5094 * c-opts.c (c_diagnostic_finalizer): Replace invocation of
5095 pp_newline_and_flush with pp_flush.
5096
5097 2016-01-20 Martin Sebor <msebor@redhat.com>
5098
5099 PR c/69405
5100 * c-common.c (sync_resolve_size): Avoid printing diagnostic about
5101 an incompatible argument when the argument isn't a valid tree node.
5102
5103 2016-01-18 Jason Merrill <jason@redhat.com>
5104
5105 PR c++/68767
5106 * c-common.c (check_function_arguments_recurse): Fold the whole
5107 COND_EXPR, not just the condition.
5108
5109 2016-01-18 Tom de Vries <tom@codesourcery.com>
5110
5111 * c-omp.c (c_oacc_split_loop_clauses): Don't copy OMP_CLAUSE_REDUCTION,
5112 classify as loop clause.
5113
5114 2016-01-15 Jakub Jelinek <jakub@redhat.com>
5115
5116 PR bootstrap/68271
5117 * c-pragma.c (c_register_pragma_1): Adjust comment to note that
5118 C++ FE no longer has limit on number of pragmas.
5119
5120 2015-01-14 Ryan Burn <contact@rnburn.com>
5121
5122 PR c++/69048
5123 * cilk.c (create_cilk_wrapper_body): Call fold_build_cleanup_point_expr
5124 to add missing cleanup point.
5125
5126 2016-01-14 David Malcolm <dmalcolm@redhat.com>
5127
5128 PR c++/68819
5129 * c-indentation.c (get_visual_column): Add location_t param.
5130 Handle the column number being zero by effectively disabling the
5131 warning, with an "inform".
5132 (should_warn_for_misleading_indentation): Add location_t argument
5133 for all uses of get_visual_column.
5134
5135 2016-01-10 Patrick Palka <ppalka@gcc.gnu.org>
5136
5137 PR c++/69029
5138 * c-indentation.c (should_warn_for_misleading_indentation):
5139 Don't warn about do-while statements.
5140
5141 2016-01-07 Martin Sebor <msebor@redhat.com>
5142
5143 PR c/68966
5144 * c-common.c (sync_resolve_size): Reject first argument when it's
5145 a pointer to _Bool.
5146
5147 2016-01-05 David Malcolm <dmalcolm@redhat.com>
5148
5149 PR c/69122
5150 * c-indentation.c (get_visual_column): Remove default argument.
5151 (should_warn_for_misleading_indentation): For the multiline case,
5152 update call to get_visual_column for next_stmt_exploc so that it
5153 captures the location of the first non-whitespace character in the
5154 relevant line. Don't issue warnings if there is non-whitespace
5155 before the next statement.
5156
5157 2016-01-04 Jakub Jelinek <jakub@redhat.com>
5158
5159 Update copyright years.
5160
5161 2015-12-21 David Malcolm <dmalcolm@redhat.com>
5162
5163 * c-common.c (binary_op_error): Convert first param from
5164 location_t to rich_location * and use it when emitting an error.
5165 * c-common.h (binary_op_error): Convert first param from
5166 location_t to rich_location *.
5167
5168 2015-12-16 David Malcolm <dmalcolm@redhat.com>
5169
5170 * c-common.h (conflict_marker_get_final_tok_kind): New prototype.
5171 * c-lex.c (conflict_marker_get_final_tok_kind): New function.
5172
5173 2015-12-15 Ilya Verbin <ilya.verbin@intel.com>
5174
5175 * c-common.c (c_common_attribute_table): Handle "omp declare target
5176 link" attribute.
5177
5178 2015-12-14 Jakub Jelinek <jakub@redhat.com>
5179
5180 PR c/68833
5181 * c.opt (Wmissing-format-attribute, Wnormalized): Add Warning option.
5182
5183 2014-12-12 Tobias Burnus <burnus@net-b.de>
5184
5185 PR fortran/68815
5186 * c-format.c (gcc_gfc_char_table): Add 'q' flag to remaining
5187 specifiers (%d, %i,%u and %c).
5188
5189 2015-12-10 David Malcolm <dmalcolm@redhat.com>
5190
5191 * c.opt (Wmisleading-indentation): Add to -Wall for C and C++.
5192
5193 2015-12-08 Jakub Jelinek <jakub@redhat.com>
5194
5195 PR c/48088
5196 PR c/68657
5197 * c.opt (Wfloat-conversion, Wsign-conversion): Add Warning.
5198 * c-pragma.c (handle_pragma_diagnostic): Adjust
5199 control_warning_option caller.
5200
5201 2015-12-07 David Malcolm <dmalcolm@redhat.com>
5202
5203 * c-common.c (c_cpp_error): Update for change to
5204 rich_location::set_range.
5205
5206 2015-12-04 Paolo Bonzini <bonzini@gnu.org>
5207
5208 * c-common.c (maybe_warn_shift_overflow): Warn on all overflows if
5209 shifting 1 out of the sign bit.
5210
5211 2015-12-04 Kirill Yukhin <kirill.yukhin@intel.com>
5212
5213 * c-common.c (c_common_attribute_table[]): Update max arguments
5214 count for "simd" attribute.
5215 (handle_simd_attribute): Parse "notinbranch" and "inbranch" arguments.
5216
5217 2015-12-03 Jakub Jelinek <jakub@redhat.com>
5218
5219 PR preprocessor/57580
5220 * c-ppoutput.c (print): Change printed field to bool.
5221 Move src_file last for smaller padding.
5222 (init_pp_output): Set print.printed to false instead of 0.
5223 (scan_translation_unit): Fix up formatting. Set print.printed
5224 to true after printing something other than newline.
5225 (scan_translation_unit_trad): Set print.printed to true instead of 1.
5226 (maybe_print_line_1): Set print.printed to false instead of 0.
5227 (print_line_1): Likewise.
5228 (do_line_change): Set print.printed to true instead of 1.
5229 (cb_define, dump_queued_macros, cb_include, cb_def_pragma,
5230 dump_macro): Set print.printed to false after printing newline.
5231
5232 2015-12-02 Jason Merrill <jason@redhat.com>
5233
5234 * c-common.c (fold_for_warn): New.
5235 (warn_logical_operator, warn_tautological_cmp)
5236 (check_function_arguments_recurse, maybe_warn_bool_compare): Use it.
5237
5238 * c-common.c (c_disable_warnings, c_enable_warnings, c_fully_fold)
5239 (c_fully_fold_internal, decl_constant_value_for_optimization):
5240 Move to c/c-fold.c.
5241 * c-common.h: Don't declare decl_constant_value_for_optimization.
5242
5243 2015-12-02 Joseph Myers <joseph@codesourcery.com>
5244
5245 PR c/68162
5246 * c-common.h (c_build_qualified_type): Add extra default
5247 arguments.
5248
5249 2015-12-01 Julian Brown <julian@codesourcery.com>
5250 Cesar Philippidis <cesar@codesourcery.com>
5251 James Norris <James_Norris@mentor.com>
5252
5253 * c-pragma.c (oacc_pragmas): Add PRAGMA_OACC_HOST_DATA.
5254 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_HOST_DATA.
5255 (pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_USE_DEVICE.
5256
5257 2015-11-30 Eric Botcazou <ebotcazou@adacore.com>
5258
5259 * c-ada-spec.c (print_ada_macros): Remove redundant blank line.
5260 (decl_sloc_common): Delete and move bulk of processing to...
5261 (decl_sloc): ...here.
5262 (pp_ada_tree_identifier): Remove reference to QUAL_UNION_TYPE.
5263 (dump_ada_double_name): Remove S parameter and compute the suffix.
5264 (dump_ada_array_type): Add PARENT parameter. Simplify computation of
5265 element type and deal with an anonymous one.
5266 (dump_ada_template): Use RECORD_OR_UNION_TYPE_P macro.
5267 (dump_generic_ada_node): Tweak. Adjust call to dump_ada_array_type
5268 and remove reference to QUAL_UNION_TYPE.
5269 (dump_nested_types): Make 2 passes on the fields and move bulk to...
5270 (dump_nested_type): ...here. New function extracted from above.
5271 Generate a full declaration for anonymous element type of arrays.
5272 (print_ada_declaration): Really skip anonymous declarations. Remove
5273 references to QUAL_UNION_TYPE. Adjust call to dump_ada_array_type.
5274 Clean up processing of declarations of array types and objects.
5275 (print_ada_struct_decl): Remove reference to QUAL_UNION_TYPE.
5276 Remove obsolete code and tidy up.
5277
5278 2015-11-29 Jan Hubicka <hubicka@ucw.cz>
5279
5280 PR c/67581
5281 * c-common.c (handle_transparent_union_attribute): Update
5282 also type variants.
5283
5284 2015-11-27 Martin Liska <mliska@suse.cz>
5285
5286 PR c++/68312
5287 * array-notation-common.c (cilkplus_extract_an_triplets):
5288 Release vector of vectors.
5289 * cilk.c (gimplify_cilk_spawn): Free allocated memory.
5290
5291 2015-11-26 Eric Botcazou <ebotcazou@adacore.com>
5292
5293 PR c++/68527
5294 * c-ada-spec.c (dump_nested_types): Add guard for error_mark_node.
5295 (print_ada_struct_decl): Likewise.
5296
5297 2015-11-23 Igor Zamyatin <igor.zamyatin@intel.com>
5298
5299 PR c++/68001
5300 * c-gimplify.c (c_gimplify_expr): Stop the process if see an error.
5301 * cilk.c (recognize_spawn): Determine location in a more precise
5302 way.
5303
5304 2015-11-19 Jason Merrill <jason@redhat.com>
5305
5306 * c-common.c (shorten_compare): But look through macros from
5307 system headers.
5308
5309 2015-11-18 Jason Merrill <jason@redhat.com>
5310
5311 * c-common.c (shorten_compare): Don't -Wtype-limits if the
5312 non-constant operand comes from a macro.
5313
5314 2015-11-17 Jason Merrill <jason@redhat.com>
5315
5316 PR bootstrap/68346
5317 * c-common.c (warn_tautological_cmp): Fold before checking for
5318 constants.
5319
5320 2015-11-16 Marek Polacek <polacek@redhat.com>
5321
5322 PR c++/68362
5323 * c-common.c (check_case_bounds): Fold low and high cases.
5324
5325 2015-11-16 Marek Polacek <polacek@redhat.com>
5326
5327 * c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P.
5328 * c-common.c (c_common_get_alias_set): Likewise.
5329 (handle_visibility_attribute): Likewise.
5330
5331 2015-11-16 Kirill Yukhin <kirill.yukhin@intel.com>
5332
5333 * c-common.c (handle_simd_attribute): New.
5334 (struct attribute_spec): Add entry for "simd".
5335 (handle_simd_attribute): New.
5336
5337 2015-11-13 Kai Tietz <ktietz70@googlemail.com>
5338
5339 * c-lex.c (interpret_float): Use fold_convert.
5340
5341 2015-11-13 David Malcolm <dmalcolm@redhat.com>
5342
5343 * c-common.c (c_fully_fold_internal): Capture existing souce_range,
5344 and store it on the result.
5345 * c-opts.c (c_common_init_options): Set
5346 global_dc->colorize_source_p.
5347
5348 2015-11-12 James Norris <jnorris@codesourcery.com>
5349 Joseph Myers <joseph@codesourcery.com>
5350
5351 * c-pragma.c (oacc_pragmas): Add entry for declare directive.
5352 * c-pragma.h (enum pragma_kind): Add PRAGMA_OACC_DECLARE.
5353 (enum pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_DEVICE_RESIDENT and
5354 PRAGMA_OACC_CLAUSE_LINK.
5355
5356 2015-11-11 Marek Polacek <polacek@redhat.com>
5357
5358 PR c/68107
5359 PR c++/68266
5360 * c-common.c (valid_array_size_p): New function.
5361 * c-common.h (valid_array_size_p): Declare.
5362
5363 2015-11-11 Dominique d'Humieres <dominiq@lps.ens.fr>
5364
5365 PR bootstrap/68271
5366 * c-pragma.c (c_register_pragma_1): Update the gcc_assert to 256.
5367
5368 2015-11-11 Andrew MacLeod <amacleod@redhat.com>
5369
5370 * array-notation-common.c: Remove unused header files.
5371 * c-ada-spec.c: Likewise.
5372 * c-cilkplus.c: Likewise.
5373 * c-common.c: Likewise.
5374 * c-cppbuiltin.c: Likewise.
5375 * c-dump.c: Likewise.
5376 * c-format.c: Likewise.
5377 * c-gimplify.c: Likewise.
5378 * c-indentation.c: Likewise.
5379 * c-lex.c: Likewise.
5380 * c-omp.c: Likewise.
5381 * c-opts.c: Likewise.
5382 * c-pch.c: Likewise.
5383 * c-ppoutput.c: Likewise.
5384 * c-pragma.c: Likewise.
5385 * c-pretty-print.c: Likewise.
5386 * c-semantics.c: Likewise.
5387 * c-ubsan.c: Likewise.
5388 * cilk.c: Likewise.
5389 * stub-objc.c: Likewise.
5390
5391 2015-11-09 Thomas Schwinge <thomas@codesourcery.com>
5392 Cesar Philippidis <cesar@codesourcery.com>
5393 James Norris <jnorris@codesourcery.com>
5394 Julian Brown <julian@codesourcery.com>
5395 Nathan Sidwell <nathan@codesourcery.com>
5396
5397 * c-pragma.c (oacc_pragmas): Add "routine".
5398 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_ROUTINE.
5399
5400 2015-11-08 Eric Botcazou <ebotcazou@adacore.com>
5401
5402 * c-common.c (c_common_attributes): Add scalar_storage_order.
5403 (handle_scalar_storage_order_attribute): New function.
5404 * c-pragma.c (global_sso): New variable.
5405 (maybe_apply_pragma_scalar_storage_order): New function.
5406 (handle_pragma_scalar_storage_order): Likewise.
5407 (init_pragma): Register scalar_storage_order.
5408 * c-pragma.h (maybe_apply_pragma_scalar_storage_order): Declare.
5409 * c.opt (Wscalar-storage-order): New warning.
5410 (fsso-struct=): New option.
5411
5412 2015-11-08 Martin Sebor <msebor@redhat.com>
5413
5414 * c.opt (Wplacement-new): Add a period to the end of a sentence.
5415
5416 2015-11-07 Richard Sandiford <richard.sandiford@arm.com>
5417
5418 * c-common.c: Don't undef DEF_BUILTIN.
5419
5420 2015-11-06 David Malcolm <dmalcolm@redhat.com>
5421
5422 * c-common.c (c_cpp_error): Convert parameter from location_t to
5423 rich_location *. Eliminate the "column_override" parameter and
5424 the call to diagnostic_override_column.
5425 Update the "done_lexing" clause to set range 0
5426 on the rich_location, rather than overwriting a location_t.
5427 * c-common.h (c_cpp_error): Convert parameter from location_t to
5428 rich_location *. Eliminate the "column_override" parameter.
5429
5430 2015-11-05 Cesar Philippidis <cesar@codesourcery.com>
5431 Thomas Schwinge <thomas@codesourcery.com>
5432 James Norris <jnorris@codesourcery.com>
5433
5434 * c-omp.c (c_oacc_split_loop_clauses): Make TILE, GANG, WORKER, VECTOR,
5435 AUTO, SEQ, INDEPENDENT and PRIVATE loop clauses. Associate REDUCTION
5436 clauses with parallel and kernels and loops.
5437 * c-pragma.h (enum pragma_omp_clause): Add entries for
5438 PRAGMA_OACC_CLAUSE_{INDEPENDENT,TILE,DEFAULT}.
5439 * pt.c (tsubst_omp_clauses): Add support for OMP_CLAUSE_{NUM_GANGS,
5440 NUM_WORKERS,VECTOR_LENGTH,GANG,WORKER,VECTOR,ASYNC,WAIT,TILE,AUTO,
5441 INDEPENDENT,SEQ}.
5442 (tsubst_expr): Add support for OMP_CLAUSE_{KERNELS,PARALLEL,LOOP}.
5443
5444 2015-11-05 Martin Sebor <msebor@redhat.com>
5445
5446 PR c++/67942
5447 * c.opt (-Wplacement-new): New option.
5448
5449 2015-11-05 Jakub Jelinek <jakub@redhat.com>
5450
5451 * c-common.h (c_finish_omp_atomic): Add TEST argument.
5452 (c_omp_check_loop_iv, c_omp_check_loop_iv_exprs): New prototypes.
5453 * c-omp.c (c_finish_omp_atomic): Add TEST argument. Don't call
5454 save_expr or create_tmp_var* if TEST is true.
5455 (c_finish_omp_for): Store OMP_FOR_ORIG_DECLS always.
5456 Don't call add_stmt here.
5457 (struct c_omp_check_loop_iv_data): New type.
5458 (c_omp_check_loop_iv_r, c_omp_check_loop_iv,
5459 c_omp_check_loop_iv_exprs): New functions.
5460 (c_omp_split_clauses): Adjust for lastprivate being allowed on
5461 distribute.
5462 (c_omp_declare_simd_clauses_to_numbers): Change
5463 OMP_CLAUSE_LINEAR_VARIABLE_STRIDE OMP_CLAUSE_LINEAR_STEP into numbers.
5464 (c_omp_declare_simd_clauses_to_decls): Similarly change those
5465 from numbers to PARM_DECLs.
5466
5467 2015-11-04 Mikhail Maltsev <maltsevm@gmail.com>
5468
5469 * c-omp.c (c_omp_split_clauses): Remove conditional compilation. Use
5470 flag_checking.
5471
5472 2015-11-03 Bernd Schmidt <bschmidt@redhat.com>
5473
5474 PR c++-common/67882
5475 * c-common.h (fold_offsetof_1): Add argument.
5476 * c-common.c (fold_offsetof_1): Diagnose more invalid
5477 offsetof expressions that reference elements past the end of
5478 an array.
5479
5480 2015-11-03 Thomas Schwinge <thomas@codesourcery.com>
5481 Chung-Lin Tang <cltang@codesourcery.com>
5482
5483 * c-pragma.c (oacc_pragmas): Add "atomic".
5484 * c-pragma.h (pragma_kind): Add PRAGMA_OACC_ATOMIC.
5485
5486 2015-10-30 Evgeny Stupachenko <evstupac@gmail.com>
5487
5488 * c-common.c (handle_target_clones_attribute): New.
5489 (c_common_attribute_table): Add handle_target_clones_attribute.
5490 (handle_always_inline_attribute): Add check on target_clones attribute.
5491 (handle_target_attribute): Ditto.
5492
5493 2015-10-29 Andrew MacLeod <amacleod@redhat.com>
5494
5495 * array-notation-common.c: Reorder #include's and remove duplicates.
5496 * c-ada-spec.c: Likewise.
5497 * c-cilkplus.c: Likewise.
5498 * c-common.c: Likewise.
5499 * c-cppbuiltin.c: Likewise.
5500 * c-dump.c: Likewise.
5501 * c-format.c: Likewise.
5502 * c-gimplify.c: Likewise.
5503 * c-indentation.c: Likewise.
5504 * c-lex.c: Likewise.
5505 * c-omp.c: Likewise.
5506 * c-opts.c: Likewise.
5507 * c-pch.c: Likewise.
5508 * c-ppoutput.c: Likewise.
5509 * c-pragma.c: Likewise.
5510 * c-pretty-print.c: Likewise.
5511 * c-semantics.c: Likewise.
5512 * c-ubsan.c: Likewise.
5513 * cilk.c: Likewise.
5514 * stub-objc.c: Likewise.
5515
5516 2015-10-28 Jason Merrill <jason@redhat.com>
5517
5518 * c-common.c (pointer_int_sum): Fold the MULT_EXPR.
5519
5520 2015-10-27 Thomas Schwinge <thomas@codesourcery.com>
5521 James Norris <jnorris@codesourcery.com>
5522 Cesar Philippidis <cesar@codesourcery.com>
5523
5524 PR c/64765
5525 PR c/64880
5526 * c-common.h (c_oacc_split_loop_clauses): Declare function.
5527 * c-omp.c (c_oacc_split_loop_clauses): New function.
5528
5529 2015-10-21 Martin Sebor <msebor@redhat.com>
5530
5531 PR driver/68043
5532 * c.opt: End each sentence that describes an option with a period.
5533
5534 2015-10-20 Marek Polacek <polacek@redhat.com>
5535
5536 * array-notation-common.c (is_cilkplus_vector_p): Define.
5537 * c-common.h (is_cilkplus_vector_p): Declare.
5538
5539 2015-10-20 Marek Polacek <polacek@redhat.com>
5540
5541 * c.opt (std=gnu++11): Do not describe as experimental.
5542 (std=gnu++14): Likewise.
5543
5544 2015-10-19 Jason Merrill <jason@redhat.com>
5545
5546 * c-cppbuiltin.c (c_cpp_builtins): Define
5547 __cpp_nontype_template_args.
5548
5549 2015-10-19 Jason Merrill <jason@redhat.com>
5550
5551 * c-cppbuiltin.c (c_cpp_builtins): Define
5552 __cpp_enumerator_attributes, __cpp_fold_expressions,
5553 __cpp_unicode_characters.
5554
5555 2015-10-13 Jakub Jelinek <jakub@redhat.com>
5556 Aldy Hernandez <aldyh@redhat.com>
5557
5558 * c-common.c (enum c_builtin_type): Define DEF_FUNCTION_TYPE_9,
5559 DEF_FUNCTION_TYPE_10 and DEF_FUNCTION_TYPE_11.
5560 (c_define_builtins): Likewise.
5561 * c-common.h (enum c_omp_clause_split): Add
5562 C_OMP_CLAUSE_SPLIT_TASKLOOP.
5563 (c_finish_omp_critical, c_finish_omp_ordered): Add CLAUSES argument.
5564 (c_finish_omp_for): Add ORIG_DECLV argument.
5565 * c-cppbuiltin.c (c_cpp_builtins): Predefine _OPENMP as
5566 201511 instead of 201307.
5567 * c-omp.c (c_finish_omp_critical): Add CLAUSES argument, set
5568 OMP_CRITICAL_CLAUSES to it.
5569 (c_finish_omp_ordered): Add CLAUSES argument, set
5570 OMP_ORDERED_CLAUSES to it.
5571 (c_finish_omp_for): Add ORIG_DECLV argument, set OMP_FOR_ORIG_DECLS
5572 to it if OMP_FOR. Clear DECL_INITIAL on the IVs.
5573 (c_omp_split_clauses): Handle OpenMP 4.5 combined/composite
5574 constructs and new OpenMP 4.5 clauses. Clear
5575 OMP_CLAUSE_SCHEDULE_SIMD if not combined with OMP_SIMD. Add
5576 verification code.
5577 * c-pragma.c (omp_pragmas_simd): Add taskloop.
5578 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_TASKLOOP.
5579 (enum pragma_omp_clause): Add
5580 PRAGMA_OMP_CLAUSE_{DEFAULTMAP,GRAINSIZE,HINT,{IS,USE}_DEVICE_PTR}
5581 and PRAGMA_OMP_CLAUSE_{LINK,NOGROUP,NUM_TASKS,PRIORITY,SIMD,THREADS}.
5582
5583 2015-10-05 Richard Sandiford <richard.sandiford@arm.com>
5584
5585 * c-lex.c (interpret_float): Use real_equal instead of
5586 REAL_VALUES_EQUAL.
5587
5588 2015-10-04 Jason Merrill <jason@redhat.com>
5589
5590 Implement N4514, C++ Extensions for Transactional Memory.
5591 * c-common.c (c_common_reswords): Add C++ TM TS keywords.
5592 (c_common_attribute_table): Add transaction_safe_dynamic.
5593 transaction_safe now affects type identity.
5594 (handle_tm_attribute): Handle transaction_safe_dynamic.
5595 * c-common.h (enum rid): Add RID_ATOMIC_NOEXCEPT,
5596 RID_ATOMIC_CANCEL, RID_SYNCHRONIZED.
5597 (OBJC_IS_CXX_KEYWORD): Add RID_SYNCHRONIZED.
5598 (D_TRANSMEM): New.
5599 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_transactional_memory.
5600 * c-pretty-print.c (pp_c_attributes_display): Don't print
5601 transaction_safe in C++.
5602
5603 2015-10-02 Marek Polacek <polacek@redhat.com>
5604
5605 * c.opt (Wduplicated-cond): Don't enable by -Wall anymore.
5606
5607 2015-10-02 Marek Polacek <polacek@redhat.com>
5608
5609 PR c/64249
5610 * c-common.c (warn_duplicated_cond_add_or_warn): New function.
5611 * c-common.h (warn_duplicated_cond_add_or_warn): Declare.
5612 * c.opt (Wduplicated-cond): New option.
5613
5614 2015-10-01 Joseph Myers <joseph@codesourcery.com>
5615
5616 * c.opt (std=c11): Do not describe as experimental.
5617 (std=gnu11): Likewise.
5618 (std=iso9899:2011): Likewise.
5619
5620 2015-09-28 Nathan Sidwell <nathan@codesourcery.com>
5621
5622 * c-common.c (DEF_FUNCTION_TYPE_VAR_6): New.
5623 (DEF_FUNCTION_TYPE_VAR_11): Delete.
5624
5625 2015-09-25 Marek Polacek <polacek@redhat.com>
5626
5627 * c-ubsan.c (ubsan_instrument_division): Remove unnecessary code.
5628 (ubsan_instrument_shift): Likewise.
5629
5630 2015-09-25 Marek Polacek <polacek@redhat.com>
5631
5632 PR sanitizer/64906
5633 * c-ubsan.c (ubsan_instrument_division): Also pre-evaluate OP1.
5634
5635 2015-09-24 Patrick Palka <ppalka@gcc.gnu.org>
5636
5637 * c-indentation.c (should_warn_for_misleading_indentation):
5638 Compare next_stmt_vis_column with guard_line_first_nws instead
5639 of with guard_line_vis_column.
5640
5641 2015-09-23 Manuel López-Ibáñez <manu@gcc.gnu.org>
5642
5643 PR c/49654
5644 PR c/49655
5645 * c-pragma.c (handle_pragma_diagnostic): Detect non-warning
5646 options and options not valid for the current language.
5647
5648 2015-09-22 Patrick Palka <ppalka@gcc.gnu.org>
5649
5650 * c-indentation.c (should_warn_for_misleading_indentation):
5651 Float out and consolidate the calls to get_visual_column that
5652 are passed guard_exploc as an argument. Compare
5653 next_stmt_vis_column with guard_line_first_nws instead of with
5654 body_line_first_nws.
5655
5656 2015-09-22 Nathan Sidwell <nathan@codesourcery.com>
5657
5658 * c.opt (Wmultiple-inheritance, Wvirtual-inheritance, Wtemplates,
5659 Wnamespaces): New C++ warnings.
5660
5661 2015-09-22 Jason Merrill <jason@redhat.com>
5662
5663 * c-common.h (abi_compat_version_crosses): New.
5664 (warn_abi_version): Declare.
5665 * c-common.c: Define it.
5666 * c-opts.c (c_common_post_options): Handle it.
5667 flag_abi_compat_version defaults to 8.
5668
5669 2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
5670
5671 Complete the implementation of N4230, Nested namespace definition.
5672 * c-cppbuiltin.c: Add __cpp_namespace_attributes and
5673 __cpp_nested_namespace_definitions.
5674
5675 2015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
5676
5677 * c-pragma.c (handle_pragma_diagnostic): Fix wrong return.
5678
5679 2015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
5680
5681 * c-pragma.c (handle_pragma_diagnostic): Use explicit location
5682 when warning.
5683 * c-pragma.h (pragma_lex): Add optional loc argument.
5684
5685 2015-09-16 Mikhail Maltsev <maltsevm@gmail.com>
5686
5687 * c-format.c (check_format_arg): Adjust to use common block size in all
5688 object pools.
5689
5690 2015-09-15 David Malcolm <dmalcolm@redhat.com>
5691
5692 * c-format.c (location_from_offset): Update for change in
5693 signature of location_get_source_line.
5694 * c-indentation.c (get_visual_column): Likewise.
5695 (line_contains_hash_if): Likewise.
5696
5697 2015-09-14 Marek Polacek <polacek@redhat.com>
5698
5699 * c-opts.c (c_common_post_options): Set C++ standard earlier, before
5700 setting various warnings.
5701
5702 2015-09-14 Marek Polacek <polacek@redhat.com>
5703
5704 * c-common.c (warn_for_sign_compare): Cast to unsigned when shifting
5705 a negative value.
5706
5707 2015-09-11 Mark Wielaard <mjw@redhat.com>
5708
5709 PR c/28901
5710 * c.opt (Wunused-variable): Option from common.opt.
5711 (Wunused-const-variable): New option.
5712
5713 2015-09-09 Paolo Carlini <paolo.carlini@oracle.com>
5714
5715 PR c++/53184
5716 * c.opt ([Wsubobject-linkage]): Add.
5717
5718 2015-09-03 Martin Sebor <msebor@redhat.com>
5719
5720 PR c/66516
5721 * c-common.h (c_decl_implicit, reject_gcc_builtin): Declare new
5722 functions.
5723 * c-common.c (reject_gcc_builtin): Define.
5724
5725 2015-09-02 Balaji V. Iyer <balaji.v.iyer@intel.com>
5726
5727 PR middle-end/60586
5728 * c-common.h (cilk_gimplify_call_params_in_spawned_fn): New
5729 prototype.
5730 * c-gimplify.c (c_gimplify_expr): Added a call to the function
5731 cilk_gimplify_call_params_in_spawned_fn.
5732 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): New function.
5733 (gimplify_cilk_spawn): Removed EXPR_STMT and CLEANUP_POINT_EXPR
5734 unwrapping.
5735
5736 2015-08-25 Marek Polacek <polacek@redhat.com>
5737
5738 PR middle-end/67330
5739 * c-common.c (handle_weak_attribute): Don't check whether the
5740 visibility can be changed here.
5741
5742 2015-08-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
5743
5744 * c-lex.c (c_lex_with_flags): Use explicit locations.
5745
5746 2015-08-18 Trevor Saunders <tbsaunde@tbsaunde.org>
5747
5748 * c-ada-spec.h, c-common.c, c-common.h, c-format.c, c-format.h,
5749 c-objc.h, c-ppoutput.c, c-pragma.c, c-pragma.h: Remove useless
5750
5751 2015-08-18 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
5752
5753 PR middle-end/36757
5754 * c-common.c (check_builtin_function_arguments): Add check
5755 for BUILT_IN_SIGNBIT argument.
5756
5757 2015-08-18 Paolo Carlini <paolo.carlini@oracle.com>
5758
5759 PR c++/67160
5760 * c-cppbuiltin.c (c_cpp_builtins): Fix __cpp_static_assert value
5761 in c++1z mode.
5762
5763 2015-08-17 Marek Polacek <polacek@redhat.com>
5764
5765 * c-pretty-print.c (pp_c_cv_qualifiers): Remove code dealing
5766 with whitespaces before qualifier names.
5767
5768 2015-08-12 Marek Polacek <polacek@redhat.com>
5769
5770 PR c++/55095
5771 * c-common.c (maybe_warn_shift_overflow): Properly handle
5772 left-shifting 1 into the sign bit.
5773
5774 2015-08-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
5775
5776 * c.opt (Wchkp): Use LangEnabledBy instead of EnabledBy.
5777
5778 2015-08-06 Andrew Sutton <andrew.n.sutton@gmail.com>
5779 Braden Obrzut <admin@maniacsvault.net>
5780 Jason Merrill <jason@redhat.com>
5781
5782 Add C++ Concepts TS support.
5783 * c-common.c (c_common_reswords): Add __is_same_as, concept, requires.
5784 * c-common.h (enum rid): Add RID_IS_SAME_AS, RID_CONCEPT, RID_REQUIRES.
5785 (D_CXX_CONCEPTS, D_CXX_CONCEPTS_FLAGS): New.
5786 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_concepts.
5787 * c-opts.c (set_std_cxx1z): Set flag_concepts.
5788 * c.opt (fconcepts): New.
5789
5790 2015-08-02 Martin Sebor <msebor@redhat.com>
5791
5792 * c.opt (-Wframe-address): New warning option.
5793
5794 2015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
5795
5796 * c-indentation.c (should_warn_for_misleading_indentation):
5797 Improve heuristics.
5798
5799 2015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
5800
5801 * c-indentation.c (get_visual_column): Add parameter first_nws,
5802 use it. Update comment documenting the function.
5803 (is_first_nonwhitespace_on_line): Remove.
5804 (should_warn_for_misleading_indentation): Replace usage of
5805 of is_first_nonwhitespace_on_line with get_visual_column.
5806
5807 2015-08-02 Patrick Palka <ppalka@gcc.gnu.org>
5808
5809 * c-indentation.h (struct token_indent_info): Define.
5810 (get_token_indent_info): Define.
5811 (warn_for_misleading_information): Declare.
5812 * c-common.h (warn_for_misleading_information): Remove.
5813 * c-identation.c (warn_for_misleading_indentation):
5814 Change declaration to take three token_indent_infos. Adjust
5815 accordingly.
5816 * c-identation.c (should_warn_for_misleading_indentation):
5817 Likewise. Bail out early if the body is a compound statement.
5818 (guard_tinfo_to_string): Define.
5819
5820 2015-07-30 Jason Merrill <jason@redhat.com>
5821
5822 * c-pretty-print.c (unary_expression) [INDIRECT_REF]: Don't print
5823 '*' for reference decay.
5824
5825 2015-07-30 Marek Polacek <polacek@redhat.com>
5826
5827 * c-common.c (warn_tautological_cmp): Bail for float types.
5828
5829 2015-07-27 Marek Polacek <polacek@redhat.com>
5830
5831 PR bootstrap/67030
5832 * c-common.c (warn_tautological_cmp): Don't warn for macro expansion.
5833
5834 2015-07-27 Marek Polacek <polacek@redhat.com>
5835
5836 PR c++/66555
5837 PR c/54979
5838 * c-common.c (find_array_ref_with_const_idx_r): New function.
5839 (warn_tautological_cmp): New function.
5840 * c-common.h (warn_tautological_cmp): Declare.
5841 * c.opt (Wtautological-compare): New option.
5842
5843 2015-07-23 Marek Polacek <polacek@redhat.com>
5844
5845 * c-ubsan.c (ubsan_instrument_division): Use unshare_expr throughout.
5846 (ubsan_instrument_shift): Likewise.
5847
5848 2015-07-23 Marek Polacek <polacek@redhat.com>
5849
5850 PR sanitizer/66908
5851 * c-ubsan.c: Include gimplify.h.
5852 (ubsan_instrument_division): Unshare OP0 and OP1.
5853 (ubsan_instrument_shift): Likewise.
5854
5855 2015-07-20 Marek Polacek <polacek@redhat.com>
5856 Richard Sandiford <richard.sandiford@arm.com>
5857
5858 PR c++/55095
5859 * c-common.c (c_fully_fold_internal): Warn about left shift overflows.
5860 Use EXPR_LOC_OR_LOC.
5861 (maybe_warn_shift_overflow): New function.
5862 * c-common.h (maybe_warn_shift_overflow): Declare.
5863 * c-opts.c (c_common_post_options): Set warn_shift_overflow.
5864 * c.opt (Wshift-overflow): New option.
5865
5866 2015-07-16 Martin Liska <mliska@suse.cz>
5867
5868 * c-format.c (static void check_format_info_main): Use
5869 object_allocator instead of pool_allocator.
5870 (check_format_arg): Likewise.
5871 (check_format_info_main): Likewise.
5872
5873 2015-07-15 Andrew MacLeod <amacleod@redhat.com>
5874
5875 * c-opts.c: Remove multiline #include comment.
5876
5877 2015-07-12 Aldy Hernandez <aldyh@redhat.com>
5878
5879 * c-common.c: Fix double word typos.
5880
5881 2015-07-10 Eric Botcazou <ebotcazou@adacore.com>
5882
5883 * c-ada-spec.h (cpp_operation): Revert latest change.
5884 * c-ada-spec.c (print_ada_declaration): Likewise. Skip implicit
5885 constructors and destructors.
5886
5887 2015-07-09 Andrew MacLeod <amacleod@redhat.com>
5888
5889 * c-common.h: Adjust includes for flags.h changes.
5890 * stub-objc.c: Likewise.
5891
5892 2015-07-08 Eric Botcazou <ebotcazou@adacore.com>
5893
5894 * c-ada-spec.h (cpp_operation): Add IS_CONSTEXPR.
5895 * c-ada-spec.c (print_ada_declaration): Skip constexpr constructors.
5896
5897 2015-07-08 Jakub Jelinek <jakub@redhat.com>
5898
5899 * c-omp.c (c_omp_declare_simd_clauses_to_numbers): If all clauses
5900 are to be removed, return NULL rather than original clauses list.
5901
5902 2015-07-07 Andrew MacLeod <amacleod@redhat.com>
5903
5904 * array-notation-common.c: Adjust includes.
5905 * c-ada-spec.c: Likewise.
5906 * c-cilkplus.c: Likewise.
5907 * c-common.h: Likewise.
5908 * c-cppbuiltin.c: Likewise.
5909 * c-dump.c: Likewise.
5910 * c-format.c: Likewise.
5911 * c-gimplify.c: Likewise.
5912 * c-indentation.c: Likewise.
5913 * c-lex.c: Likewise.
5914 * c-omp.c: Likewise.
5915 * c-opts.c: Likewise.
5916 * c-pch.c: Likewise.
5917 * c-ppoutput.c: Likewise.
5918 * c-pragma.c: Likewise.
5919 * c-pretty-print.c: Likewise.
5920 * c-semantics.c: Likewise.
5921 * c-ubsan.c: Likewise.
5922 * cilk.c: Likewise.
5923 * stub-objc.c: Likewise.
5924
5925 2015-07-07 Eric Botcazou <ebotcazou@adacore.com>
5926
5927 * c-ada-spec.h (cpp_operation): Add IS_MOVE_CONSTRUCTOR.
5928 * c-ada-spec.c (print_ada_declaration): Skip move constructors.
5929
5930 2015-07-01 Jason Merrill <jason@redhat.com>
5931
5932 * c-common.h (D_CXX11): Rename from D_CXX0X.
5933 (RID_FIRST_CXX11, RID_LAST_CXX11): Rename from *_CXX0X.
5934 * c-common.c: Adjust.
5935
5936 * c-opts.c (c_common_post_options): Default to C++14.
5937
5938 * c-opts.c (c_common_post_options): Highest ABI level is now 10.
5939
5940 2015-06-30 Edward Smith-Rowland <3dw4rd@verizon.net>
5941
5942 Implement N4197 - Adding u8 character literals
5943 * c-ada-spec.c (print_ada_macros): Treat CPP_UTF8CHAR like
5944 CPP_CHAR.
5945 * c-common.c (c_parse_error): Print CPP_UTF8CHAR and
5946 CPP_UTF8CHAR_USERDEF tokens.
5947 * c-lex.c (c_lex_with_flags): Treat CPP_UTF8CHAR_USERDEF
5948 and CPP_UTF8CHAR tokens.
5949 (lex_charconst): Treat CPP_UTF8CHAR token.
5950
5951 2015-06-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
5952
5953 PR fortran/66605
5954 * c-common.c (do_warn_unused_parameter): Move here.
5955 * c-common.h (do_warn_unused_parameter): Declare.
5956
5957 2015-06-29 Marek Polacek <polacek@redhat.com>
5958
5959 PR c/66322
5960 * c-common.c (check_case_bounds): Add bool * parameter. Set
5961 OUTSIDE_RANGE_P.
5962 (c_add_case_label): Add bool * parameter. Pass it down to
5963 check_case_bounds.
5964 (c_do_switch_warnings): Add bool parameters. Implement -Wswitch-bool
5965 warning here.
5966 * c-common.h (c_add_case_label, c_do_switch_warnings): Update
5967 declarations.
5968
5969 2015-06-27 Marek Polacek <polacek@redhat.com>
5970
5971 * c-common.c (check_main_parameter_types): Use VECTOR_TYPE_P
5972 or VECTOR_INTEGER_TYPE_P throughout.
5973 * c-gimplify.c: Likewise.
5974
5975 2015-06-26 Marek Polacek <polacek@redhat.com>
5976
5977 * array-notation-common.c (find_rank): Use INDIRECT_REF_P.
5978 * c-common.c (c_fully_fold_internal): Likewise.
5979 (c_alignof_expr): Likewise.
5980 * c-pretty-print.c (c_pretty_printer::postfix_expression): Likewise.
5981 * c-ubsan.c (ubsan_instrument_bounds): Likewise.
5982 * cilk.c (create_parm_list): Likewise.
5983
5984 2015-06-26 Marek Polacek <polacek@redhat.com>
5985
5986 * c-common.c (handle_unused_attribute): Use VAR_OR_FUNCTION_DECL_P.
5987
5988 2015-06-25 Andrew MacLeod <amacleod@redhat.com>
5989
5990 * c-common.c: Remove ipa-ref.h and plugin-api.h from include list.
5991 * c-gimplify.c: Likewise.
5992 * c-pragma.c: Likewise.
5993 * c-ubsan.c: Likewise.
5994 * cilk.c: Likewise.
5995
5996 2015-06-25 Richard Sandiford <richard.sandiford@arm.com>
5997
5998 * c-common.c (c_type_hasher): Inherit from ggc_ptr_hash rather than
5999 ggc_hasher.
6000
6001 2015-06-25 Andrew MacLeod <amacleod@redhat.com>
6002
6003 * cilk.c: Move calls.h after tm.h in the include chain.
6004
6005 2015-06-25 Marek Polacek <polacek@redhat.com>
6006
6007 * array-notation-common.c: Use VAR_P throughout.
6008 * c-ada-spec.c: Likewise.
6009 * c-common.c: Likewise.
6010 * c-format.c: Likewise.
6011 * c-gimplify.c: Likewise.
6012 * c-omp.c: Likewise.
6013 * c-pragma.c: Likewise.
6014 * c-pretty-print.c: Likewise.
6015 * cilk.c: Likewise.
6016
6017 2015-06-25 Marek Polacek <polacek@redhat.com>
6018
6019 * cilk.c (extract_free_variables): Use is_global_var.
6020
6021 2015-06-23 Richard Sandiford <richard.sandiford@arm.com>
6022
6023 * c-common.c: Don't include target-def.h.
6024
6025 2015-06-23 Marek Polacek <polacek@redhat.com>
6026
6027 * c-common.c (warn_logical_operator): Use tree_int_cst_equal
6028 when comparing INTEGER_CSTs.
6029
6030 2015-06-22 Pierre-Marie de Rodat <derodat@adacore.com>
6031
6032 * c-ada-spec.h (cpp_operation): Add HAS_DEPENDENT_TEMPLATE_ARGS.
6033 * c-ada-spec.c (collect_ada_nodes): Skip NAMESPACE_DECL
6034 (dump_ada_template): Skip partially specialized types.
6035
6036 2015-06-22 Mikhail Maltsev <maltsevm@gmail.com>
6037
6038 * c-common.c (scalar_to_vector): Use std::swap instead of manually
6039 swapping.
6040
6041 2015-06-17 Andrew MacLeod <amacleod@redhat.com>
6042
6043 * array-notation-common.c: Do not include input.h, line-map.h or is-a.h.
6044 * c-ada-spec.c: Likewise.
6045 * c-cilkplus.c: Likewise.
6046 * c-common.c: Likewise.
6047 * c-common.h: Likewise.
6048 * c-cppbuiltin.c: Likewise.
6049 * c-dump.c: Likewise.
6050 * c-format.c: Likewise.
6051 * c-gimplify.c: Likewise.
6052 * c-indentation.c: Likewise.
6053 * c-lex.c: Likewise.
6054 * c-omp.c: Likewise.
6055 * c-opts.c: Likewise.
6056 * c-pch.c: Likewise.
6057 * c-ppoutput.c: Likewise.
6058 * c-pragma.c: Likewise.
6059 * c-pretty-print.c: Likewise.
6060 * c-semantics.c: Likewise.
6061 * c-ubsan.c: Likewise.
6062 * cilk.c: Likewise.
6063 * stub-objc.c: Likewise.
6064
6065 2015-06-13 Patrick Palka <ppalka@gcc.gnu.org>
6066
6067 PR c++/65168
6068 * c-common.c (c_common_truthvalue_conversion): Warn when
6069 converting an address of a reference to a truth value.
6070
6071 2015-06-08 Andrew MacLeod <amacleod@redhat.com>
6072
6073 * array-notation-common.c : Adjust include files.
6074 * c-ada-spec.c : Likewise.
6075 * c-cilkplus.c : Likewise.
6076 * c-common.c : Likewise.
6077 * c-common.h : Likewise.
6078 * c-cppbuiltin.c : Likewise.
6079 * c-dump.c : Likewise.
6080 * c-format.c : Likewise.
6081 * c-gimplify.c : Likewise.
6082 * c-indentation.c : Likewise.
6083 * c-lex.c : Likewise.
6084 * c-omp.c : Likewise.
6085 * c-opts.c : Likewise.
6086 * c-pch.c : Likewise.
6087 * c-ppoutput.c : Likewise.
6088 * c-pragma.c : Likewise.
6089 * c-pretty-print.c : Likewise.
6090 * c-semantics.c : Likewise.
6091 * c-ubsan.c : Likewise.
6092 * cilk.c : Likewise.
6093 * stub-objc.c : Likewise.
6094
6095 2015-06-08 Marek Polacek <polacek@redhat.com>
6096
6097 PR c/66415
6098 * c-format.c (location_from_offset): Return LOC if LINE is null.
6099
6100 2015-06-05 Aldy Hernandez <aldyh@redhat.com>
6101
6102 * c-common.h (c_parse_final_cleanups): New prototype.
6103 * c-opts.c (c_common_parse_file): Call c_parse_final_cleanups.
6104
6105 2015-06-04 Sriraman Tallam <tmsriram@google.com>
6106
6107 * c-common.c (noplt): New attribute.
6108 (handle_noplt_attribute): New handler.
6109
6110 2015-06-04 Andrew MacLeod <amacleod@redhat.com>
6111
6112 * array-notation-common.c: Adjust includes for restructured coretypes.h.
6113 * c-ada-spec.c: Likewise.
6114 * c-cilkplus.c: Likewise.
6115 * c-common.c: Likewise.
6116 * c-common.h: Likewise.
6117 * c-cppbuiltin.c: Likewise.
6118 * c-dump.c: Likewise.
6119 * c-format.c: Likewise.
6120 * c-gimplify.c: Likewise.
6121 * c-indentation.c: Likewise.
6122 * c-lex.c: Likewise.
6123 * c-omp.c: Likewise.
6124 * c-opts.c: Likewise.
6125 * c-pch.c: Likewise.
6126 * c-ppoutput.c: Likewise.
6127 * c-pragma.c: Likewise.
6128 * c-pretty-print.c: Likewise.
6129 * c-semantics.c: Likewise.
6130 * c-ubsan.c: Likewise.
6131 * cilk.c: Likewise.
6132 * stub-objc.c: Likewise.
6133
6134 2015-06-02 David Malcolm <dmalcolm@redhat.com>
6135
6136 PR c/66220:
6137 * c-indentation.c (should_warn_for_misleading_indentation): Use
6138 expand_location rather than expand_location_to_spelling_point.
6139 Don't warn if the guarding statement is more indented than the
6140 next/body stmts.
6141
6142 2015-06-02 David Malcolm <dmalcolm@redhat.com>
6143
6144 * c-indentation.c (warn_for_misleading_indentation): Bail out
6145 immediately if -Wmisleading-indentation isn't enabled.
6146
6147 2015-06-01 Martin Liska <mliska@suse.cz>
6148
6149 * c-format.c (check_format_arg):Use new type-based pool allocator.
6150 (check_format_info_main) Likewise.
6151
6152 2015-05-31 Eric Botcazou <ebotcazou@adacore.com>
6153
6154 * c-ada-spec.c (is_tagged_type): Test for TYPE_METHODS on main variant.
6155 (has_nontrivial_methods): Likewise.
6156
6157 2015-05-25 Marek Polacek <polacek@redhat.com>
6158
6159 * c-ubsan.c (ubsan_instrument_shift): Use type0.
6160
6161 2015-05-22 Marek Polacek <polacek@redhat.com>
6162
6163 PR c/47043
6164 * c-common.c (handle_deprecated_attribute): Allow CONST_DECL.
6165
6166 2015-05-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
6167
6168 * c-cppbuiltin.c (c_cpp_builtins): Use if instead of #if with
6169 STACK_GROWS_DOWNWARD.
6170
6171 2015-05-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
6172
6173 * c-cppbuiltin.c (c_cpp_builtins): Check the value of
6174 STACK_GROWS_DOWNWARD rather than if it is defined.
6175
6176 2015-05-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
6177
6178 PR c/52952
6179 * c-format.c (location_column_from_byte_offset): New.
6180 (location_from_offset): New.
6181 (struct format_wanted_type): Add offset_loc field.
6182 (check_format_info): Move handling of location for extra arguments
6183 closer to the point of warning.
6184 (check_format_info_main): Pass the result of location_from_offset
6185 to warning_at.
6186 (format_type_warning): Pass the result of location_from_offset
6187 to warning_at.
6188
6189 2015-05-20 Marek Polacek <polacek@redhat.com>
6190
6191 * c-omp.c (check_omp_for_incr_expr): Use BINARY_CLASS_P.
6192
6193 2015-05-20 Marek Polacek <polacek@redhat.com>
6194
6195 * c-ada-spec.c (dump_sloc): Use DECL_P.
6196
6197 2015-05-20 Marek Polacek <polacek@redhat.com>
6198
6199 * c-pragma.c: Use VAR_OR_FUNCTION_DECL_P throughout.
6200 * c-common.c: Likewise.
6201
6202 2015-05-19 David Malcolm <dmalcolm@redhat.com>
6203
6204 * c-common.h (fe_file_change): Strengthen param from
6205 const line_map * to const line_map_ordinary *.
6206 (pp_file_change): Likewise.
6207 * c-lex.c (fe_file_change): Likewise.
6208 (cb_define): Use linemap_check_ordinary when invoking
6209 SOURCE_LINE.
6210 (cb_undef): Likewise.
6211 * c-opts.c (c_finish_options): Use linemap_check_ordinary when
6212 invoking cb_file_change.
6213 (c_finish_options): Likewise.
6214 (push_command_line_include): Likewise.
6215 (cb_file_change): Strengthen param "new_map" from
6216 const line_map * to const line_map_ordinary *.
6217 * c-ppoutput.c (cb_define): Likewise for local "map".
6218 (pp_file_change): Likewise for param "map" and local "from".
6219
6220 2015-05-19 Mikhail Maltsev <maltsevm@gmail.com>
6221
6222 * c-common.c (shorten_compare): Use std::swap instead of explicit swaps.
6223
6224 2015-05-18 Tom de Vries <tom@codesourcery.com>
6225
6226 * c-common.c (build_va_arg_1): New function.
6227 (build_va_arg): Add address operator to va_list operand if necessary.
6228
6229 2015-05-15 Mikhail Maltsev <maltsevm@gmail.com>
6230
6231 PR c/48956
6232 * c-common.c (int_safely_convertible_to_real_p): Define.
6233 (unsafe_conversion_p): Check conversions involving complex types.
6234 (conversion_warning): Add new warning message for conversions which
6235 discard imaginary component.
6236 * c-common.h: (enum conversion_safety): Add new enumerator for such
6237 conversions.
6238
6239 2015-05-14 Marek Polacek <polacek@redhat.com>
6240
6241 PR c/66066
6242 PR c/66127
6243 * c-common.c (c_fully_fold): Pass false down to c_fully_fold_internal.
6244 (c_fully_fold_internal): Fold C_MAYBE_CONST_EXPRs with
6245 C_MAYBE_CONST_EXPR_INT_OPERANDS set. Add FOR_INT_CONST argument and
6246 use it. If FOR_INT_CONST, require that all evaluated operands be
6247 INTEGER_CSTs.
6248
6249 2015-05-12 David Malcolm <dmalcolm@redhat.com>
6250
6251 * c-common.h (warn_for_misleading_indentation): New prototype.
6252 * c-indentation.c: New file.
6253 * c.opt (Wmisleading-indentation): New option.
6254
6255 2015-05-12 Tom de Vries <tom@codesourcery.com>
6256
6257 PR tree-optimization/66010
6258 * c-common.c (build_va_arg): Don't mark ap addressable unless necessary.
6259
6260 2015-05-09 Jason Merrill <jason@redhat.com>
6261
6262 * c-opts.c (c_common_post_options): Also clear
6263 cpp_opts->cpp_warn_cxx11_compat.
6264
6265 * c-common.h (enum cxx_dialect): Add cxx_unset.
6266 * c-common.c (cxx_dialect): Initialize to cxx_unset.
6267 * c-opts.c (c_common_post_options): Set C++ dialect to C++98 if unset.
6268
6269 * c.opt (std=c++14): Remove Undocumented flag and experimental warning.
6270 (std=gnu++0x): Mark as Undocumented.
6271 (std=gnu++1y): Add deprecated message.
6272
6273 2015-05-08 Jason Merrill <jason@redhat.com>
6274
6275 * c.opt (Wc++11-compat): Make primary. Rename var warn_cxx11_compat.
6276 * c-opts.c: Adjust.
6277
6278 * c.opt (Wc++0x-compat): Also set cpp_warn_cxx11_compat.
6279
6280 2015-05-08 Marek Polacek <polacek@redhat.com>
6281
6282 PR c/64918
6283 * c.opt (Woverride-init-side-effects): New option.
6284
6285 2015-05-07 Marek Polacek <polacek@redhat.com>
6286
6287 PR c/65179
6288 * c-common.c (c_fully_fold_internal): Warn when left shifting a
6289 negative value.
6290 * c.opt (Wshift-negative-value): New option.
6291 * c-opts.c (c_common_post_options): Set warn_shift_negative_value
6292 when -Wextra and C99/C++11 mode.
6293
6294 2015-05-07 Marek Polacek <polacek@redhat.com>
6295 Martin Uecker <uecker@eecs.berkeley.edu>
6296
6297 * c-ubsan.c (ubsan_instrument_bounds): Don't skip instrumenting
6298 flexible member array-like members if SANITIZE_BOUNDS_STRICT.
6299
6300 2015-05-05 Jason Merrill <jason@redhat.com>
6301
6302 * c.opt (Wterminate): New.
6303
6304 2015-04-30 Marek Polacek <polacek@redhat.com>
6305
6306 * c-common.c (maybe_warn_bool_compare): When comparing with 0/1,
6307 require that the non-constant be of a boolean type.
6308
6309 2015-04-29 Josh Triplett <josh@joshtriplett.org>
6310
6311 * c-common.c (handle_section_attribute): Refactor to reduce
6312 nesting and distinguish between error cases.
6313
6314 2015-04-29 Marek Polacek <polacek@redhat.com>
6315
6316 PR c/64610
6317 * c-common.c (maybe_warn_bool_compare): Warn when comparing a boolean
6318 with 0/1.
6319
6320 2015-04-29 Jakub Jelinek <jakub@redhat.com>
6321
6322 * c-common.h (omp_clause_mask): Unconditionally define as a class.
6323 Use uint64_t instead of unsigned HOST_WIDE_INT and 64 instead of
6324 HOST_BITS_PER_WIDE_INT.
6325
6326 2015-04-28 Tom de Vries <tom@codesourcery.com>
6327
6328 PR tree-optimization/65887
6329 * c-common.c (build_va_arg): Mark va_arg ap argument as addressable.
6330
6331 2015-04-28 Eric Botcazou <ebotcazou@adacore.com>
6332 Pierre-Marie de Rodat <derodat@adacore.com>
6333
6334 * c-ada-spec.c (in_function): Delete.
6335 (dump_generic_ada_node): Do not change in_function and remove the
6336 redundant code dealing with it.
6337 (print_ada_declaration): Do not change in_function. Use INDENT_INCR.
6338 (print_ada_methods): Output the static member functions in a nested
6339 package after the regular methods as well as associated renamings.
6340
6341 2015-04-24 Marek Polacek <polacek@redhat.com>
6342
6343 PR c/65830
6344 * c-common.c (c_fully_fold_internal): Use OPT_Wshift_count_negative
6345 and OPT_Wshift_count_overflow.
6346
6347 PR c/63357
6348 * c-common.c (warn_logical_operator): Warn if the operands have the
6349 same expressions.
6350
6351 2015-04-24 Marek Polacek <polacek@redhat.com>
6352
6353 PR c/61534
6354 * c-common.c (warn_logical_operator): Bail if either operand comes
6355 from a macro expansion.
6356
6357 2015-04-10 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
6358
6359 PR target/55143
6360 * c-common.c (c_default_pointer_mode): Add definition.
6361 * c-common.h (c_default_pointer_mode): Add declaration.
6362
6363 2015-03-11 Jakub Jelinek <jakub@redhat.com>
6364
6365 * c-common.c (c_common_nodes_and_builtins): Don't call xstrdup
6366 on record_builtin_type argument.
6367
6368 2015-03-10 Jakub Jelinek <jakub@redhat.com>
6369
6370 PR c/65120
6371 * c-common.c (warn_logical_not_parentheses): Don't warn for
6372 !x == 0 or !x != 0.
6373
6374 2015-03-07 Marek Polacek <polacek@redhat.com>
6375
6376 PR sanitizer/65280
6377 * c-ubsan.c (ubsan_instrument_bounds): Check for COMPONENT_REF
6378 before trying to figure out whether we have a flexible array member.
6379
6380 2015-03-06 Eric Botcazou <ebotcazou@adacore.com>
6381 Jonathan Wakely <jwakely.gcc@gmail.com>
6382
6383 * c-ada-spec.c (dump_ada_double_name): Fix pasto.
6384
6385 2015-03-05 Eric Botcazou <ebotcazou@adacore.com>
6386
6387 PR ada/65319
6388 * c-ada-spec.c (print_destructor): Remove obsolete code.
6389
6390 2015-03-01 Eric Botcazou <ebotcazou@adacore.com>
6391
6392 * c-ada-spec.c (is_tagged_type): Add guard for DECL_VINDEX.
6393 (dump_template_types): Adjust DECL_TEMPLATE_INSTANTIATIONS and
6394 DECL_TEMPLATE_RESULT emulations.
6395 (dump_ada_template)): Add guard for TYPE_METHODS.
6396
6397 2015-02-27 Marek Polacek <polacek@redhat.com>
6398
6399 PR c/65040
6400 * c.opt (Wformat-signedness): Don't enable by -Wformat=2.
6401
6402 2015-02-27 Kai Tietz <ktietz@redhat.com>
6403
6404 PR c/35330
6405 * c-pragma.c (handle_pragma_weak): Do not try to create
6406 weak/alias of declarations not being function, or variable
6407 declarations.
6408
6409 2015-02-24 Thomas Schwinge <thomas@codesourcery.com>
6410
6411 PR libgomp/64625
6412 * c-common.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
6413 Remove macros.
6414 (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
6415
6416 2015-02-16 Marek Polacek <polacek@redhat.com>
6417
6418 PR c/65066
6419 * c-format.c (check_format_types): Handle null param.
6420
6421 2015-02-13 Marek Polacek <polacek@redhat.com>
6422
6423 PR c/65040
6424 * c-format.c (check_format_types): Don't warn about different
6425 signedness if the original value is in the range of WANTED_TYPE.
6426
6427 2015-02-12 Jason Merrill <jason@redhat.com>
6428
6429 PR c++/64956
6430 * c-opts.c (c_common_post_options): Change flag_abi_version from 0
6431 to the current highest version.
6432 * c-cppbuiltin.c (c_cpp_builtins): Assert that it isn't 0.
6433
6434 2015-02-04 Jakub Jelinek <jakub@redhat.com>
6435
6436 PR c/64824
6437 PR c/64868
6438 * c-omp.c (c_finish_omp_atomic): Use TRUNC_DIV_EXPR
6439 instead of RDIV_EXPR. Use build_binary_op instead of
6440 build2_loc.
6441
6442 2015-01-30 Joseph Myers <joseph@codesourcery.com>
6443
6444 * c-opts.c, c-pch.c, cppspec.c: All callers of fatal_error changed
6445 to pass input_location as first argument.
6446
6447 2015-01-23 Tom de Vries <tom@codesourcery.com>
6448
6449 PR libgomp/64672
6450 * c.opt (fopenacc): Mark as LTO option.
6451
6452 2015-01-23 Tom de Vries <tom@codesourcery.com>
6453
6454 PR libgomp/64707
6455 * c.opt (fopenmp): Mark as LTO option.
6456
6457 2015-01-21 Jakub Jelinek <jakub@redhat.com>
6458
6459 PR c/63307
6460 * cilk.c (fill_decls_vec): Only put decls into vector v.
6461 (compare_decls): Fix up formatting.
6462
6463 2015-01-21 Igor Zamyatin <igor.zamyatin@intel.com>
6464
6465 PR c/63307
6466 * cilk.c: Include vec.h.
6467 (struct cilk_decls): New structure.
6468 (wrapper_parm_cb): Split this function to...
6469 (fill_decls_vec): ...this...
6470 (create_parm_list): ...and this.
6471 (compare_decls): New function.
6472 (for_local_cb): Remove.
6473 (wrapper_local_cb): Ditto.
6474 (build_wrapper_type): For now first traverse and fill vector of
6475 declarations then sort it and then deal with sorted vector.
6476 (cilk_outline): Ditto.
6477 (declare_one_free_variable): Ditto.
6478
6479 2015-01-21 Jason Merrill <jason@redhat.com>
6480
6481 PR c++/64629
6482 * c-format.c (check_format_arg): Call decl_constant_value.
6483
6484 2015-01-19 Martin Liska <mliska@suse.cz>
6485
6486 * c-common.c (handle_noicf_attribute): New function.
6487
6488 2015-01-15 Thomas Schwinge <thomas@codesourcery.com>
6489 Bernd Schmidt <bernds@codesourcery.com>
6490 James Norris <jnorris@codesourcery.com>
6491 Cesar Philippidis <cesar@codesourcery.com>
6492 Ilmir Usmanov <i.usmanov@samsung.com>
6493 Jakub Jelinek <jakub@redhat.com>
6494
6495 * c.opt (fopenacc): New option.
6496 * c-cppbuiltin.c (c_cpp_builtins): Conditionally define _OPENACC.
6497 * c-common.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
6498 New macros.
6499 * c-common.h (c_finish_oacc_wait): New prototype.
6500 * c-omp.c: Include "omp-low.h" and "gomp-constants.h".
6501 (c_finish_oacc_wait): New function.
6502 * c-pragma.c (oacc_pragmas): New variable.
6503 (c_pp_lookup_pragma, init_pragma): Handle it.
6504 * c-pragma.h (enum pragma_kind): Add PRAGMA_OACC_CACHE,
6505 PRAGMA_OACC_DATA, PRAGMA_OACC_ENTER_DATA, PRAGMA_OACC_EXIT_DATA,
6506 PRAGMA_OACC_KERNELS, PRAGMA_OACC_LOOP, PRAGMA_OACC_PARALLEL,
6507 PRAGMA_OACC_UPDATE, PRAGMA_OACC_WAIT.
6508 (enum pragma_omp_clause): Add PRAGMA_OACC_CLAUSE_ASYNC,
6509 PRAGMA_OACC_CLAUSE_AUTO, PRAGMA_OACC_CLAUSE_COLLAPSE,
6510 PRAGMA_OACC_CLAUSE_COPY, PRAGMA_OACC_CLAUSE_COPYIN,
6511 PRAGMA_OACC_CLAUSE_COPYOUT, PRAGMA_OACC_CLAUSE_CREATE,
6512 PRAGMA_OACC_CLAUSE_DELETE, PRAGMA_OACC_CLAUSE_DEVICE,
6513 PRAGMA_OACC_CLAUSE_DEVICEPTR, PRAGMA_OACC_CLAUSE_FIRSTPRIVATE,
6514 PRAGMA_OACC_CLAUSE_GANG, PRAGMA_OACC_CLAUSE_HOST,
6515 PRAGMA_OACC_CLAUSE_IF, PRAGMA_OACC_CLAUSE_NUM_GANGS,
6516 PRAGMA_OACC_CLAUSE_NUM_WORKERS, PRAGMA_OACC_CLAUSE_PRESENT,
6517 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPY,
6518 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYIN,
6519 PRAGMA_OACC_CLAUSE_PRESENT_OR_COPYOUT,
6520 PRAGMA_OACC_CLAUSE_PRESENT_OR_CREATE, PRAGMA_OACC_CLAUSE_PRIVATE,
6521 PRAGMA_OACC_CLAUSE_REDUCTION, PRAGMA_OACC_CLAUSE_SELF,
6522 PRAGMA_OACC_CLAUSE_SEQ, PRAGMA_OACC_CLAUSE_VECTOR,
6523 PRAGMA_OACC_CLAUSE_VECTOR_LENGTH, PRAGMA_OACC_CLAUSE_WAIT,
6524 PRAGMA_OACC_CLAUSE_WORKER.
6525
6526 2015-01-14 Marcos Diaz <marcos.diaz@tallertechnologies.com>
6527
6528 * c-cppbuiltin.c (c_cpp_builtins): New cpp define __SSP_EXPLICIT__
6529 for the new option fstack-protector_explicit.
6530 * c-common.c (c_common_attribute_table): Add stack_protect attribute.
6531 (handle_stack_protect_attribute): New function.
6532
6533 2015-01-13 Martin Uecker <uecker@eecs.berkeley.edu>
6534
6535 * c.opt: New option -Warray-bounds=.
6536
6537 2015-01-09 Michael Collison <michael.collison@linaro.org>
6538
6539 * array-notation-common.c: Include hash-set.h, machmode.h,
6540 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6541 fold-const.h, wide-int.h, and inchash.h due to flattening of tree.h.
6542 * c-ada-spec.c: Ditto.
6543 * c-cilkplus.c: Ditto.
6544 * c-common.c: Include input.h due to flattening of tree.h.
6545 Define macro GCC_C_COMMON_C.
6546 * c-common.h: Flatten tree.h header files into c-common.h.
6547 Remove include of tree-core.h.
6548 * c-cppbuiltin.c: Include hash-set.h, machmode.h,
6549 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6550 fold-const.h, wide-int.h, and inchash.h due to
6551 flattening of tree.h.
6552 * c-dump.c: Ditto.
6553 * c-format.c: Flatten tree.h header files into c-common.h.
6554 * c-cppbuiltin.c: Include hash-set.h, machmode.h,
6555 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6556 fold-const.h, wide-int.h, and inchash.h due to
6557 flattening of tree.h.
6558 * c-dump.c: Include hash-set.h, machmode.h,
6559 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6560 fold-const.h, wide-int.h, and inchash.h due to
6561 flattening of tree.h.
6562 * c-format.c: Include hash-set.h, machmode.h,
6563 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6564 fold-const.h, wide-int.h, inchash.h and real.h due to
6565 flattening of tree.h.
6566 * c-gimplify.c: Include hash-set.h, machmode.h,
6567 vec.h, double-int.h, input.h, alias.h, symtab.h, options.h
6568 fold-const.h, wide-int.h, and inchash.h due to
6569 flattening of tree.h.
6570 * cilk.c: Ditto.
6571 * c-lex.c: Ditto.
6572 * c-omp.c: Ditto.
6573 * c-opts.c: Ditto.
6574 * c-pch.c: Ditto.
6575 * c-ppoutput.c: Ditto.
6576 * c-pragma.c: Ditto.
6577 * c-pretty-print.c: Ditto.
6578 * c-semantics.c: Ditto.
6579 * c-ubsan.c: Ditto.
6580 * stub-objc.c: Ditto.
6581
6582 2015-01-08 Jason Merrill <jason@redhat.com>
6583
6584 * c-ubsan.c (ubsan_maybe_instrument_array_ref): Use
6585 do_ubsan_in_current_function.
6586 (ubsan_maybe_instrument_reference_or_call): Likewise.
6587 * c-ubsan.h: Declare it.
6588
6589 2015-01-08 Mike Stump <mikestump@comcast.net>
6590
6591 * c-common.c (c_common_attribute_table): Add no_sanitize_thread.
6592
6593 2015-01-07 Marek Polacek <polacek@redhat.com>
6594
6595 PR c/64440
6596 * c-common.c (c_fully_fold_internal): Warn for division and modulo
6597 if orig_op1 isn't INTEGER_CST, op1 is INTEGER_CST and is zero.
6598
6599 2015-01-05 Trevor Saunders <tsaunders@mozilla.com>
6600
6601 PR c++/31397
6602 * c.opt (Wsuggest-override): New option.
6603
6604 2015-01-05 Jakub Jelinek <jakub@redhat.com>
6605
6606 Update copyright years.
6607
6608 2015-01-05 Marek Polacek <polacek@redhat.com>
6609
6610 PR c/64423
6611 * c-common.c (warn_array_subscript_with_type_char): Add location_t
6612 parameter. Use it.
6613 * c-common.h (warn_array_subscript_with_type_char): Update
6614 declaration.
6615
6616 2014-12-20 Edward Smith-Rowland <3dw4rd@verizon.net>
6617
6618 * c-cppbuiltin.c (__cpp_sized_deallocation): Uncomment and move macro.
6619 Control macro with flag_sized_deallocation.
6620
6621 2014-12-20 Martin Uecker <uecker@eecs.berkeley.edu>
6622
6623 * c.opt (Wdiscarded-array-qualifiers): New option.
6624
6625 2014-12-19 Jakub Jelinek <jakub@redhat.com>
6626
6627 PR preprocessor/63831
6628 * c-cppbuiltin.c (c_cpp_builtins): Don't define __has_attribute
6629 and __has_cpp_attribute here.
6630 * c-ppoutput.c (init_pp_output): Set cb->has_attribute to
6631 c_common_has_attribute.
6632 * c-common.h (c_common_has_attribute): New prototype.
6633 * c-lex.c (init_c_lex): Set cb->has_attribute to
6634 c_common_has_attribute instead of cb_has_attribute.
6635 (get_token_no_padding): New function.
6636 (cb_has_attribute): Renamed to ...
6637 (c_common_has_attribute): ... this. No longer static. Use
6638 get_token_no_padding, require ()s, don't build TREE_LIST
6639 unnecessarily, fix up formatting, adjust diagnostics, call
6640 init_attributes.
6641
6642 2014-12-15 Jason Merrill <jason@redhat.com>
6643
6644 * c.opt (-fsized-deallocation, -Wc++14-compat): New.
6645 (-Wsized-deallocation): New.
6646 * c-opts.c (c_common_post_options): -fsized-deallocation defaults
6647 to on in C++14 and up.
6648
6649 2014-12-11 Jason Merrill <jason@redhat.com>
6650
6651 * c-cppbuiltin.c (c_cpp_builtins): Enable C++14 __cpp_constexpr.
6652
6653 * c-cppbuiltin.c (c_cpp_builtins): Define __cpp_runtime_arrays if
6654 we aren't complaining about VLAs.
6655
6656 2014-12-06 Marek Polacek <polacek@redhat.com>
6657
6658 PR tree-optimization/64183
6659 * c-gimplify.c (c_gimplify_expr): Don't convert the RHS of a
6660 shift-expression if it is integer_type_node. Use types_compatible_p.
6661
6662 2014-11-29 Jakub Jelinek <jakub@redhat.com>
6663
6664 * c-common.c (convert_vector_to_pointer_for_subscript): Remove NULL
6665 last argument from create_tmp_var_raw and create_tmp_var calls.
6666 * cilk.c (gimplify_cilk_spawn): Likewise.
6667 * c-omp.c (c_finish_omp_atomic): Likewise.
6668
6669 2014-11-28 Marek Polacek <polacek@redhat.com>
6670
6671 * c-ubsan.c (ubsan_instrument_shift): Use op1_utype for MINUS_EXPR
6672 instead of unsigned_type_node.
6673
6674 2014-11-28 Marek Polacek <polacek@redhat.com>
6675
6676 PR c/63862
6677 * c-ubsan.c (ubsan_instrument_shift): Change the type of a MINUS_EXPR
6678 to op1_utype.
6679 * c-gimplify.c (c_gimplify_expr): Convert right operand of a shift
6680 expression to unsigned_type_node.
6681
6682 2014-11-20 Mark Wielaard <mjw@redhat.com>
6683
6684 PR debug/38757
6685 * c-opts.c (set_std_c89): Set lang_hooks.name.
6686 (set_std_c99): Likewise.
6687 (set_std_c11): Likewise.
6688 (set_std_cxx98): Likewise.
6689 (set_std_cxx11): Likewise.
6690 (set_std_cxx14): Likewise.
6691 (set_std_cxx1z): Likewise.
6692
6693 2014-11-21 Jakub Jelinek <jakub@redhat.com>
6694
6695 PR target/63764
6696 * c-common.h (convert_vector_to_pointer_for_subscript): Change
6697 return type to bool.
6698 * c-common.c: Include gimple-expr.h.
6699 (convert_vector_to_pointer_for_subscript): Change return type to
6700 bool. If *vecp is not lvalue_p and has VECTOR_TYPE, return true
6701 and copy it into a TARGET_EXPR and use that instead of *vecp
6702 directly.
6703
6704 2014-11-19 David Malcolm <dmalcolm@redhat.com>
6705
6706 Merger of git branch "gimple-classes-v2-option-3".
6707 * ChangeLog.gimple-classes: New.
6708 * c-gimplify.c (add_block_to_enclosing): Strengthen local "stack"
6709 from being just a vec<gimple> to a vec<gbind *>.
6710
6711 2014-11-18 Jakub Jelinek <jakub@redhat.com>
6712
6713 PR sanitizer/63813
6714 * c-ubsan.c (ubsan_maybe_instrument_reference_or_call): Change type
6715 argument to ptype, set type to TREE_TYPE (ptype). Don't call
6716 get_pointer_alignment for non-pointers. Use ptype, or if it is
6717 reference type, corresponding pointer type, as type of kind
6718 argument.
6719 (ubsan_maybe_instrument_reference,
6720 ubsan_maybe_instrument_member_call): Adjust callers.
6721
6722 2014-11-15 Marek Polacek <polacek@redhat.com>
6723
6724 PR middle-end/63884
6725 * array-notation-common.c (is_sec_implicit_index_fn): Return false
6726 for NULL fndecl.
6727 (extract_array_notation_exprs): Return for NULL node.
6728
6729 2014-11-12 Joseph Myers <joseph@codesourcery.com>
6730
6731 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Define and
6732 undefine __NO_MATH_ERRNO__ based on changes to -fmath-errno state.
6733
6734 2014-11-12 Jakub Jelinek <jakub@redhat.com>
6735
6736 PR c/59708
6737 * c-common.c (check_builtin_function_arguments): Handle
6738 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW.
6739
6740 2014-11-10 Andi Kleen <ak@linux.intel.com>
6741
6742 PR c/60804
6743 * c-common.h (check_no_cilk): Declare.
6744 * cilk.c (get_error_location): New function.
6745 (check_no_cilk): Dito.
6746
6747 2014-11-10 Andi Kleen <ak@linux.intel.com>
6748
6749 * cilk.c (recognize_spawn): Use expression location
6750 for error message.
6751
6752 2014-11-10 Paolo Carlini <paolo.carlini@oracle.com>
6753
6754 * c.opt ([Wshift-count-negative, Wshift-count-overflow]): Add.
6755
6756 2014-11-10 Edward Smith-Rowland <3dw4rd@verizon.net>
6757
6758 * c-cppbuiltin.c (__has_attribute, __has_cpp_attribute): New macros;
6759 (__cpp_rtti, __cpp_exceptions): New macros for C++98;
6760 (__cpp_range_based_for, __cpp_initializer_lists,
6761 __cpp_delegating_constructors, __cpp_nsdmi,
6762 __cpp_inheriting_constructors, __cpp_ref_qualifiers): New macros
6763 for C++11; (__cpp_attribute_deprecated): Remove in favor of
6764 __has_cpp_attribute.
6765 * c-lex.c (cb_has_attribute): New callback CPP function;
6766 (init_c_lex): Set has_attribute callback.
6767
6768 2014-11-04 Richard Biener <rguenther@suse.de>
6769
6770 * c-common.c (shorten_compare): Do not shorten mixed
6771 DFP and non-DFP compares.
6772
6773 2014-11-01 Edward Smith-Rowland <3dw4rd@verizon.net>
6774
6775 * g++.dg/cpp1y/feat-cxx11.C: Commentary and rearrangement of tests.
6776 * g++.dg/cpp1y/feat-cxx11-neg.C: Add aggregate NSDMI test.
6777 Commentary and rearrangement of tests.
6778 * g++.dg/cpp1y/feat-cxx14.C: Enable aggregate NSDMI test.
6779 Commentary and rearrangement of tests.
6780 * g++.dg/cpp1y/feat-cxx98-neg.C: Ditto.
6781 * g++.dg/cpp1y/feat-cxx98.C: Commentary.
6782
6783 2014-10-29 Richard Sandiford <richard.sandiford@arm.com>
6784
6785 * c-common.c, c-common.h, c-cppbuiltin.c, c-lex.c: Remove redundant
6786 enum from machine_mode.
6787
6788 2014-10-28 Andrew MacLeod <amacleod@redhat.com>
6789
6790 * c-common.c: Adjust include files.
6791 * c-gimplify.c: Ditto.
6792 * cilk.c: Ditto.
6793 * c-pragma.c: Ditto.
6794 * c-ubsan.c: Ditto.
6795
6796 2014-10-27 Andrew MacLeod <amacleod@redhat.com>
6797
6798 * c-gimplify.c: Adjust include files.
6799
6800 2014-10-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
6801
6802 PR c++/53061
6803 * c-opts.c (c_common_diagnostics_set_defaults): Renamed from
6804 c_common_initialize_diagnostics.
6805 * c-common.h: Likewise.
6806
6807 2014-10-24 Marek Polacek <polacek@redhat.com>
6808
6809 PR c/56980
6810 * c-pretty-print.c (c_pretty_printer::simple_type_specifier): Don't
6811 print "struct"/"union"/"enum" for typedefed names.
6812
6813 2014-10-23 Marek Polacek <polacek@redhat.com>
6814
6815 * c-ubsan.c (ubsan_instrument_shift): Perform the MINUS_EXPR
6816 in unsigned type.
6817
6818 2014-10-22 Jakub Jelinek <jakub@redhat.com>
6819 Yury Gribov <y.gribov@samsung.com>
6820
6821 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
6822 ubsan_instrument_vla): Check bits in flag_sanitize_recover bitmask
6823 instead of flag_sanitize_recover as bool flag.
6824
6825 2014-10-21 Kirill Yukhin <kirill.yukhin@intel.com>
6826
6827 * cilk.c: Revert previous change.
6828
6829 2014-10-20 Igor Zamyatin <igor.zamyatin@intel.com>
6830
6831 PR c/63307
6832 * cilk.c: Include vec.h.
6833 (struct cilk_decls): New structure.
6834 (wrapper_parm_cb): Split this function to...
6835 (fill_decls_vec): ...this...
6836 (create_parm_list): ...and this.
6837 (compare_decls): New function.
6838 (for_local_cb): Remove.
6839 (wrapper_local_cb): Ditto.
6840 (build_wrapper_type): For now first traverse and fill vector of
6841 declarations then sort it and then deal with sorted vector.
6842 (cilk_outline): Ditto.
6843 (declare_one_free_variable): Ditto.
6844
6845 2014-10-17 Marek Polacek <polacek@redhat.com>
6846
6847 * c-opts.c (c_common_post_options): Set warn_implicit_int.
6848 * c.opt (Wimplicit-int): Initialize to -1.
6849
6850 2014-10-16 Andrew MacLeod <amacleod@redhat.com>
6851
6852 * c-pragma.c: Adjust include files.
6853 * c-semantics.c: Likewise.
6854
6855 2014-10-16 DJ Delorie <dj@redhat.com>
6856
6857 * c-cppbuiltin.c (cpp_atomic_builtins): Don't assume pointers are
6858 multiples of bytes.
6859
6860 2014-10-14 Jason Merrill <jason@redhat.com>
6861
6862 PR c++/63455
6863 * c-common.h (CPP_PREPARSED_EXPR): New.
6864 (N_CP_TTYPES): Adjust.
6865
6866 2014-10-15 Marek Polacek <polacek@redhat.com>
6867
6868 * c-opts.c (c_common_init_options): Make -std=gnu11 the default for C.
6869
6870 2014-10-14 DJ Delorie <dj@redhat.com>
6871
6872 * c-pretty-print.c (pp_c_integer_constant): Check for all __intN
6873 types, not just __int128.
6874 * c-cppbuiltin.c (c_cpp_builtins): Add builtins for all __intN
6875 types, not just __int128.
6876 (cpp_atomic_builtins): Round pointer sizes up.
6877 (type_suffix): Use type precision, not specific types.
6878 * c-common.c (c_common_reswords): Remove __int128 special case.
6879 (c_common_type_for_size): Check for all __intN types, not just
6880 __int128.
6881 (c_common_type_for_mode): Likewise.
6882 (c_common_signed_or_unsigned_type): Likewise.
6883 (c_build_bitfield_integer_type): Likewise.
6884 (c_common_nodes_and_builtins): Likewise.
6885 (keyword_begins_type_specifier): Likewise.
6886 * c-common.h (rid): Remove RID_INT128 and add RID_INT_N_* for all
6887 __intN variants.
6888
6889 2014-10-12 Trevor Saunders <tsaunders@mozilla.com>
6890
6891 * c-common.c: Use hash_table instead of hashtab.
6892
6893 2014-10-06 Edward Smith-Rowland <3dw4rd@verizon.net>
6894
6895 * c-cppbuiltin.c: Move __cpp_attribute_deprecated to the
6896 C++11 section.
6897
6898 2014-10-03 Marc Glisse <marc.glisse@inria.fr>
6899
6900 PR c++/54427
6901 PR c++/57198
6902 PR c++/58845
6903 * c-common.c (warn_logical_operator): Punt for vectors.
6904
6905 2014-10-01 Edward Smith-Rowland <3dw4rd@verizon.net>
6906
6907 Implement SD-6: SG10 Feature Test Recommendations
6908 * c-cppbuiltin.c (c_cpp_builtins()): Define language feature
6909 macros and the __has_header macro.
6910
6911 2014-09-30 Jason Merrill <jason@redhat.com>
6912
6913 * c-common.h (enum rid): Add RID_IS_TRIVIALLY_ASSIGNABLE and
6914 RID_IS_TRIVIALLY_CONSTRUCTIBLE.
6915 * c-common.c (c_common_reswords): Add __is_trivially_copyable.
6916
6917 * c-common.h (enum rid): Add RID_IS_TRIVIALLY_COPYABLE.
6918 * c-common.c (c_common_reswords): Add __is_trivially_copyable.
6919
6920 * c-common.h (enum rid): Remove RID_IS_CONVERTIBLE_TO.
6921 * c-common.c (c_common_reswords): Remove __is_convertible_to.
6922
6923 2014-09-24 Marek Polacek <polacek@redhat.com>
6924
6925 PR c/61405
6926 PR c/53874
6927 * c-common.h (struct c_common_resword): Don't define CPP_KEYWORD.
6928
6929 2014-09-23 Andi Kleen <ak@linux.intel.com>
6930
6931 * c-common.c (handle_no_reorder_attribute): New function.
6932 (c_common_attribute_table): Add no_reorder attribute.
6933
6934 2014-09-22 Joseph Myers <joseph@codesourcery.com>
6935
6936 * c-cppbuiltin.c (c_cpp_builtins): Define
6937 __LIBGCC_*_EXCESS_PRECISION__ macros for supported floating-point
6938 modes.
6939
6940 2014-09-18 Joseph Myers <joseph@codesourcery.com>
6941
6942 * c-cppbuiltin.c (c_cpp_builtins): Define __LIBGCC_*_FUNC_EXT__
6943 for supported floating-point modes.
6944
6945 2014-09-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
6946
6947 * c.opt (Wpsabi): Use LangEnabledBy.
6948 * c-opts.c (c_common_handle_option): Do not handle here.
6949
6950 2014-09-12 Joseph Myers <joseph@codesourcery.com>
6951
6952 * c-cppbuiltin.c (c_cpp_builtins): Define __LIBGCC_HAS_%s_MODE__
6953 macros for floating-point modes.
6954
6955 2014-09-11 Marc Glisse <marc.glisse@inria.fr>
6956
6957 PR target/58757
6958 * c-cppbuiltin.c (builtin_define_float_constants): Correct
6959 __*_DENORM_MIN__ without denormals.
6960
6961 2014-09-10 Jakub Jelinek <jakub@redhat.com>
6962
6963 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
6964 ubsan_instrument_vla, ubsan_instrument_return): Adjust
6965 ubsan_create_data callers.
6966 (ubsan_instrument_bounds): Don't emit UBSAN_BOUNDS at all if
6967 index is constant or BIT_AND_EXPR with constant mask and is
6968 small enough for the bound.
6969 * c-gimplify.c (ubsan_walk_array_refs_r): For ADDR_EXPR of
6970 ARRAY_REF, make sure the inner ARRAY_REF is not walked again.
6971
6972 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
6973
6974 * c.opt: Add CppReason to various flags.
6975 (Wdate-time): Re-sort.
6976 * c-common.c: Include c-common.h earlier.
6977 (struct reason_option_codes_t): Delete.
6978 (c_option_controlling_cpp_error): Prefix global type and struct
6979 with cpp_.
6980
6981 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
6982
6983 * c.opt (Wnormalized): New.
6984 (Wnormalized=): Use Enum and Reject Negative.
6985 * c-opts.c (c_common_handle_option): Do not handle Wnormalized here.
6986
6987 2014-09-08 Joseph Myers <joseph@codesourcery.com>
6988
6989 * c-cppbuiltin.c (c_cpp_builtins): Define macros for mantissa
6990 digits of floating-point modes if -fbuilding-libgcc.
6991
6992 2014-09-05 Joseph Myers <joseph@codesourcery.com>
6993
6994 * c-cppbuiltin.c (c_cpp_builtins): Also define
6995 __LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__,
6996 __LIBGCC_EH_FRAME_SECTION_NAME__, __LIBGCC_JCR_SECTION_NAME__,
6997 __LIBGCC_CTORS_SECTION_ASM_OP__, __LIBGCC_DTORS_SECTION_ASM_OP__,
6998 __LIBGCC_TEXT_SECTION_ASM_OP__, __LIBGCC_INIT_SECTION_ASM_OP__,
6999 __LIBGCC_INIT_ARRAY_SECTION_ASM_OP__,
7000 __LIBGCC_STACK_GROWS_DOWNWARD__,
7001 __LIBGCC_DONT_USE_BUILTIN_SETJMP__,
7002 __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__,
7003 __LIBGCC_DWARF_FRAME_REGISTERS__,
7004 __LIBGCC_EH_RETURN_STACKADJ_RTX__, __LIBGCC_JMP_BUF_SIZE__,
7005 __LIBGCC_STACK_POINTER_REGNUM__ and
7006 __LIBGCC_VTABLE_USES_DESCRIPTORS__ for -fbuilding-libgcc.
7007 (builtin_define_with_value): Handle backslash-escaping in string
7008 macro values.
7009
7010 2014-09-05 Richard Biener <rguenther@suse.de>
7011
7012 PR middle-end/63148
7013 * c-format.c (check_format_arg): Properly handle
7014 effectively signed POINTER_PLUS_EXPR offset.
7015
7016 2014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
7017
7018 * c.opt (Wc90-c99-compat,Wc++-compat,Wcomment,Wendif-labels,
7019 Winvalid-pch,Wlong-long,Wmissing-include-dirs,Wmultichar,Wpedantic,
7020 (Wdate-time,Wtraditional,Wundef,Wvariadic-macros): Add CPP, Var
7021 and Init.
7022 * c-opts.c (c_common_handle_option): Do not handle here.
7023 (sanitize_cpp_opts): Likewise.
7024 * c-common.c (struct reason_option_codes_t): Handle
7025 CPP_W_C90_C99_COMPAT and CPP_W_PEDANTIC.
7026
7027 2014-09-03 Marek Polacek <polacek@redhat.com>
7028
7029 * c.opt (Wlogical-not-parentheses): Enable by -Wall.
7030
7031 2014-09-02 Jakub Jelinek <jakub@redhat.com>
7032 Balaji V. Iyer <balaji.v.iyer@intel.com>
7033 Igor Zamyatin <igor.zamyatin@intel.com>
7034
7035 * c-cilkplus.c (cilk_for_number_of_iterations): New function.
7036 * c-common.c (c_common_reswords): Added _Cilk_for.
7037 * c-common.h (enum rid): Added RID_CILK_FOR.
7038 (cilk_for_number_of_iterations): Add declaration.
7039 * c-omp.c (c_finish_omp_for): Added checks for CILK_SIMD and
7040 CILK_FOR.
7041 * c-pragma.c (init_pragma): Register "grainsize" pragma.
7042 * c-pragma.h (enum pragma_kind): Add PRAGMA_CILK_GRAINSIZE.
7043
7044 2014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
7045
7046 * c.opt (Wbuiltin-macro-redefined,Wdeprecated,Wendif-labels,
7047 Winvalid-pch,Wliteral-suffix,Wmissing-include-dirs,Wtrigraphs,
7048 Wundef): Use CPP, Var and Init.
7049 * c-opts.c (c_common_handle_option): Do not handle the above flags here.
7050
7051 2014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
7052
7053 * c.opt (Wbuiltin-macro-redefined): Use CPP, Var and Init.
7054 * c-opts.c (c_common_handle_option): Do not handle here.
7055
7056 2014-08-25 Jason Merrill <jason@redhat.com>
7057
7058 * c.opt: Change -std=c++1y and -std=gnu++1y to be aliases for
7059 -std=c++14 and -std=gnu++14, rather than the reverse.
7060 * c-opts.c (c_common_handle_option): Change OPT_std_c__1y and
7061 OPT_std_gnu__1y to OPT_std_c__14 and OPT_std_gnu__14.
7062 * c-common.h (cxx_dialect): Remove cxx1y.
7063
7064 2014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
7065
7066 * c-common.h (enum cxx_dialect): Add cxx14.
7067 * c-opts.c (set_std_cxx1y): Rename to set_std_cxx14; Use cxx14.
7068 * c-ubsan.c (ubsan_instrument_shift): Change comment and logic from
7069 cxx_dialect == cxx11 || cxx_dialect == cxx1y to cxx_dialect >= cxx11.
7070
7071 2014-08-22 Jason Merrill <jason@redhat.com>
7072
7073 * c.opt (std=gnu++17): Fix alias.
7074
7075 2014-08-22 Marek Polacek <polacek@redhat.com>
7076
7077 PR c++/62199
7078 * c-common.c (warn_logical_not_parentheses): Don't check LHS. Don't
7079 check for vector types. Drop LHS argument.
7080 * c-common.h (warn_logical_not_parentheses): Adjust.
7081
7082 2014-08-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
7083
7084 * c.opt (Wcomment): Use CPP, Var and LangEnabledBy.
7085 (Wmultichar): Likewise.
7086 (Wdate-time): Use C-family languages instead of Common. Use CPP
7087 and Var.
7088 * c-opts.c (c_common_handle_option): Do not handle the above
7089 options here.
7090 (sanitize_cpp_opts): Likewise.
7091
7092 2014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
7093
7094 PR fortran/44054
7095 * c-opts.c: Include tree-diagnostics.h.
7096 (c_diagnostic_finalizer): New.
7097 (c_common_initialize_diagnostics): Use it.
7098
7099 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
7100
7101 PR preprocessor/51303
7102 * c-common.c (struct reason_option_codes_t option_codes):
7103 Add CPP_W_MISSING_INCLUDE_DIRS. Sort alphabetically.
7104
7105 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
7106
7107 PR c/60975
7108 PR c/53063
7109 * c.opt (Wvariadic-macros): Use CPP and LangEnabledBy.
7110 * c-opts.c (c_common_handle_option): Call cpp_handle_option_auto.
7111 (c_common_post_options): Call init_global_opts_from_cpp.
7112 (sanitize_cpp_opts): Do not handle Wvariadic-macros here.
7113
7114 2014-08-19 Marek Polacek <polacek@redhat.com>
7115
7116 PR c++/62153
7117 * c-common.c (maybe_warn_bool_compare): New function.
7118 * c-common.h (maybe_warn_bool_compare): Declare.
7119 * c.opt (Wbool-compare): New option.
7120
7121 2014-08-19 Marek Polacek <polacek@redhat.com>
7122
7123 * c.opt (Wc99-c11-compat): New option.
7124
7125 2014-08-19 Marek Polacek <polacek@redhat.com>
7126
7127 * c-opts.c (sanitize_cpp_opts): Make warn_long_long be set according
7128 to warn_c90_c99_compat.
7129 * c.opt (Wc90-c99-compat, Wdeclaration-after-statement): Initialize
7130 to -1.
7131
7132 2014-08-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
7133 Steven Bosscher <steven@gcc.gnu.org>
7134
7135 PR c/52952
7136 * c-format.c: Add extra_arg_loc and format_string_loc to struct
7137 format_check_results.
7138 (check_function_format): Use true and add comment for boolean
7139 argument.
7140 (finish_dollar_format_checking): Use explicit location when warning.
7141 (check_format_info): Likewise.
7142 (check_format_arg): Set extra_arg_loc and format_string_loc.
7143 (check_format_info_main): Use explicit location when warning.
7144 (check_format_types): Pass explicit location.
7145 (format_type_warning): Likewise.
7146
7147 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
7148
7149 PR fortran/44054
7150 * c-format.c: Handle Fortran flags.
7151
7152 2014-08-12 Igor Zamyatin <igor.zamyatin@intel.com>
7153
7154 PR other/61962
7155 * array-notation-common.c (find_rank): Added handling for other
7156 types of references.
7157
7158 2014-08-10 Marek Polacek <polacek@redhat.com>
7159
7160 PR c/51849
7161 * c-opts.c (sanitize_cpp_opts): Pass warn_c90_c99_compat to libcpp.
7162 * c.opt (Wc90-c99-compat): Add option.
7163
7164 2014-08-07 Trevor Saunders <tsaunders@mozilla.com>
7165
7166 * c-gimplify.c, cilk.c: Remove includes of pointer-set.h.
7167
7168 2014-08-03 Marek Polacek <polacek@redhat.com>
7169
7170 * c-common.c (check_case_value): Add location_t parameter. Use it.
7171 (c_add_case_label): Pass loc to check_case_value.
7172
7173 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
7174
7175 * cilk.c: Use hash_map instead of pointer_map.
7176
7177 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
7178
7179 * c-gimplify.c: Use hash_set instead of pointer_set.
7180
7181 2014-08-01 Igor Zamyatin <igor.zamyatin@intel.com>
7182
7183 PR middle-end/61455
7184 * array-notation-common.c (extract_array_notation_exprs): Handling
7185 of DECL_EXPR added.
7186
7187 2014-08-01 Jakub Jelinek <jakub@redhat.com>
7188
7189 * c-common.h (min_align_of_type): Removed prototype.
7190 * c-common.c (min_align_of_type): Removed.
7191 * c-ubsan.h (ubsan_maybe_instrument_reference,
7192 ubsan_maybe_instrument_member_call): New prototypes.
7193 * c-ubsan.c: Include stor-layout.h and builtins.h.
7194 (ubsan_maybe_instrument_reference_or_call,
7195 ubsan_maybe_instrument_reference, ubsan_maybe_instrument_call): New
7196 functions.
7197
7198 2014-07-31 Marc Glisse <marc.glisse@inria.fr>
7199
7200 PR c++/60517
7201 * c.opt (-Wreturn-local-addr): Move to common.opt.
7202
7203 2014-07-30 Jason Merrill <jason@redhat.com>
7204
7205 PR c++/61659
7206 PR c++/61687
7207 Revert:
7208 * c.opt (-fuse-all-virtuals): New.
7209
7210 2014-07-30 Tom Tromey <tromey@redhat.com>
7211
7212 PR c/59855
7213 * c.opt (Wdesignated-init): New option.
7214 * c-common.c (c_common_attribute_table): Add "designated_init".
7215 (handle_designated_init): New function.
7216
7217 2014-07-24 Marek Polacek <polacek@redhat.com>
7218
7219 PR c/57653
7220 * c-opts.c (c_finish_options): If -imacros is in effect, return.
7221
7222 2014-07-16 Dodji Seketeli <dodji@redhat.com>
7223
7224 PR preprocessor/60723 - missing system-ness marks for macro tokens
7225 * c-ppoutput.c (struct print::prev_was_system_token): New data
7226 member.
7227 (init_pp_output): Initialize it.
7228 (maybe_print_line_1, maybe_print_line, print_line_1, print_line)
7229 (do_line_change): Return a flag saying if a line marker was
7230 emitted or not.
7231 (scan_translation_unit): Detect if the system-ness of the token we
7232 are about to emit is different from the one of the previously
7233 emitted token. If so, emit a line marker. Avoid emitting useless
7234 adjacent line markers. Avoid emitting line markers for tokens
7235 originating from the expansion of built-in macros.
7236 (scan_translation_unit_directives_only): Adjust.
7237
7238 2014-07-15 Marek Polacek <polacek@redhat.com>
7239
7240 * c-ubsan.c (ubsan_instrument_bounds): Don't instrument if
7241 TYPE_MAX_VALUE is NULL.
7242
7243 2014-07-14 Jakub Jelinek <jakub@redhat.com>
7244
7245 PR middle-end/61294
7246 * c.opt (Wmemset-transposed-args): New warning.
7247
7248 2014-07-10 Jason Merrill <jason@redhat.com>
7249
7250 PR c++/61659
7251 PR c++/61687
7252 * c.opt (-fuse-all-virtuals): New.
7253
7254 2014-07-09 Richard Biener <rguenther@suse.de>
7255
7256 PR c-family/61741
7257 * c-gimplify.c (c_gimplify_expr): Gimplify self-modify expressions
7258 using unsigned arithmetic if overflow does not wrap instead of
7259 if overflow is undefined.
7260
7261 2014-07-06 Marek Polacek <polacek@redhat.com>
7262
7263 PR c/6940
7264 * c.opt (Wsizeof-array-argument): New option.
7265
7266 2014-07-03 Jakub Jelinek <jakub@redhat.com>
7267
7268 * c-ada-spec.c (dump_ada_nodes): Don't call qsort if
7269 comments->count <= 1, as comments->entries might be NULL.
7270
7271 2014-07-01 Marek Polacek <polacek@redhat.com>
7272
7273 * c.opt (Wint-conversion): New option.
7274
7275 2014-07-01 Marek Polacek <polacek@redhat.com>
7276
7277 PR c/58286
7278 * c.opt (Wincompatible-pointer-types): New option.
7279
7280 2014-06-30 Paolo Carlini <paolo.carlini@oracle.com>
7281
7282 PR c++/51400
7283 * c-common.c (handle_noreturn_attribute, handle_const_attribute):
7284 Do not discard TYPE_QUALS of type.
7285
7286 2014-06-26 Jason Merrill <jason@redhat.com>
7287
7288 * c-common.h (enum cxx_dialect): Add cxx1z.
7289 * c.opt (std=c++1z, std=c++17, std=gnu++1z, std=gnu++17): New.
7290 * c-opts.c (c_common_handle_option, set_std_cxx1z): Handle it.
7291
7292 2014-06-26 Teresa Johnson <tejohnson@google.com>
7293
7294 * c-common.h (get_dump_info): Declare.
7295 * c-gimplify.c (c_genericize): Use saved dump files.
7296 * c-opts.c (c_common_parse_file): Begin and end dumps
7297 once around parsing invocation.
7298 (get_dump_info): New function.
7299
7300 2014-06-23 Marek Polacek <polacek@redhat.com>
7301 Andrew MacLeod <amacleod@redhat.com>
7302
7303 PR c/61553
7304 * c-common.c (get_atomic_generic_size): Don't segfault if the
7305 type doesn't have a size.
7306
7307 2014-06-20 Marek Polacek <polacek@redhat.com>
7308
7309 * c-gimplify.c: Include "c-ubsan.h" and "pointer-set.h".
7310 (ubsan_walk_array_refs_r): New function.
7311 (c_genericize): Instrument array bounds.
7312 * c-ubsan.c: Include "internal-fn.h".
7313 (ubsan_instrument_division): Mark instrumented arrays as having
7314 side effects. Adjust ubsan_type_descriptor call.
7315 (ubsan_instrument_shift): Likewise.
7316 (ubsan_instrument_vla): Adjust ubsan_type_descriptor call.
7317 (ubsan_instrument_bounds): New function.
7318 (ubsan_array_ref_instrumented_p): New function.
7319 (ubsan_maybe_instrument_array_ref): New function.
7320 * c-ubsan.h (ubsan_instrument_bounds): Declare.
7321 (ubsan_array_ref_instrumented_p): Declare.
7322 (ubsan_maybe_instrument_array_ref): Declare.
7323
7324 2014-06-20 Hale Wang <hale.wang@arm.com>
7325
7326 PR lto/61123
7327 * c.opt (fshort-enums): Add to LTO.
7328 * c.opt (fshort-wchar): Likewise.
7329
7330 2014-06-16 Marek Polacek <polacek@redhat.com>
7331
7332 PR c/60439
7333 * c.opt (Wswitch-bool): Add Var.
7334
7335 2014-06-12 Jakub Jelinek <jakub@redhat.com>
7336
7337 PR middle-end/61486
7338 * c-omp.c (c_omp_split_clauses): Don't crash on firstprivate in
7339 #pragma omp target teams or
7340 #pragma omp {,target }teams distribute simd.
7341
7342 2014-06-12 Jason Merrill <jason@redhat.com>
7343
7344 * c.opt (Wabi=, fabi-compat-version): New.
7345 * c-opts.c (c_common_handle_option): Handle -Wabi=.
7346 (c_common_post_options): Handle flag_abi_compat_version default.
7347 Disallow -fabi-compat-version=1.
7348 * c-common.h (abi_version_crosses): New.
7349
7350 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
7351
7352 * c-common.c (handle_section_attribute): Update handling for
7353 section names that are no longer trees.
7354
7355 2014-06-10 Jakub Jelinek <jakub@redhat.com>
7356
7357 PR fortran/60928
7358 * c-pragma.c (omp_pragmas_simd): Move PRAGMA_OMP_TASK...
7359 (omp_pragmas): ... back here.
7360
7361 2014-06-05 Marek Polacek <polacek@redhat.com>
7362
7363 PR c/49706
7364 * c-common.c (warn_logical_not_parentheses): New function.
7365 * c-common.h (warn_logical_not_parentheses): Declare.
7366 * c.opt (Wlogical-not-parentheses): New option.
7367
7368 2014-06-04 Marek Polacek <polacek@redhat.com>
7369
7370 PR c/30020
7371 * c-common.c (check_case_bounds): Add location parameter.
7372 Use it.
7373 (c_add_case_label): Pass loc to check_case_bounds.
7374
7375 2014-06-03 Marek Polacek <polacek@redhat.com>
7376
7377 PR c/60439
7378 * c.opt (Wswitch-bool): New option.
7379
7380 2014-05-22 Thomas Schwinge <thomas@codesourcery.com>
7381
7382 * c-common.h (c_omp_sharing_predetermined, c_omp_remap_decl):
7383 Remove prototypes.
7384 (record_types_used_by_current_var_decl): Move prototype to where
7385 it belongs.
7386
7387 * c-common.c (DEF_FUNCTION_TYPE_0, DEF_FUNCTION_TYPE_6)
7388 (DEF_FUNCTION_TYPE_7, DEF_FUNCTION_TYPE_8)
7389 (DEF_FUNCTION_TYPE_VAR_5): Cosmetic fixes.
7390
7391 2014-05-21 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
7392
7393 * c-common.h (CTI_VOID_ZERO, void_zero_node): Delete.
7394 * c-common.c (c_common_nodes_and_builtins): Don't initialize
7395 void_zero_node.
7396 * c-pretty-print.c (pp_c_void_constant): New function.
7397 (c_pretty_printer::constant, c_pretty_printer::primary_expression)
7398 (c_pretty_printer::expression): Handle VOID_CST.
7399 * cilk.c (extract_free_variables): Likewise.
7400 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift)
7401 (ubsan_instrument_vla): Use void_node instead of void_zero_node.
7402
7403 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
7404
7405 * c-common.h (sorted_fields_type): Remove variable_size GTY attribute.
7406 * c-pragma.c (push_alignment): Adjust.
7407 (handle_pragma_push_options): Likewise.
7408
7409 2014-05-09 Marek Polacek <polacek@redhat.com>
7410
7411 PR c/50459
7412 * c-common.c (check_user_alignment): Return -1 if alignment is error
7413 node.
7414 (handle_aligned_attribute): Don't call default_conversion on
7415 FUNCTION_DECLs.
7416 (handle_vector_size_attribute): Likewise.
7417 (handle_tm_wrap_attribute): Handle case when wrap_decl is error node.
7418 (handle_sentinel_attribute): Call default_conversion and allow even
7419 integral types as an argument.
7420
7421 2014-05-08 Marek Polacek <polacek@redhat.com>
7422
7423 PR c/61053
7424 * c-common.c (min_align_of_type): New function factored out from...
7425 (c_sizeof_or_alignof_type): ...here.
7426 * c-common.h (min_align_of_type): Declare.
7427
7428 2014-05-08 Marek Polacek <polacek@redhat.com>
7429
7430 PR c/61077
7431 * c-common.c (check_main_parameter_types): Warn for _Atomic-qualified
7432 parameter type of main.
7433
7434 2014-05-07 DJ Delorie <dj@redhat.com>
7435
7436 * c-cppbuiltin.c (print_bits_of_hex): New.
7437 (builtin_define_type_minmax): Print values using hex so as not to
7438 require a pre-computed list of string values.
7439
7440 2014-05-06 Kenneth Zadeck <zadeck@naturalbridge.com>
7441 Mike Stump <mikestump@comcast.net>
7442 Richard Sandiford <rdsandiford@googlemail.com>
7443
7444 * c-ada-spec.c: Include wide-int.h.
7445 (ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX): Remove.
7446 (dump_generic_ada_node): Use wide-int interfaces.
7447 * c-common.c: Include wide-int-print.h.
7448 (shorten_compare): Use wide-int interfaces and tree_int_cst_lt.
7449 (pointer_int_sum): Use wide-int interfaces.
7450 (c_common_nodes_and_builtins): Use make_int_cst.
7451 (match_case_to_enum_1): Use tree_fits_uhwi_p and tree_fits_shwi_p.
7452 (handle_alloc_size_attribute): Use wide-int interfaces.
7453 (get_nonnull_operand): Likewise.
7454 * c-format.c (get_constant): Use tree_fits_uhwi_p.
7455 * c-lex.c: Include wide-int.h.
7456 (narrowest_unsigned_type): Take a widest_int rather than two
7457 HOST_WIDE_INTs.
7458 (narrowest_signed_type): Likewise.
7459 (interpret_integer): Update accordingly. Use wide-int interfaces.
7460 (lex_charconst): Use wide-int interfaces.
7461 * c-pretty-print.c: Include wide-int.h.
7462 (pp_c_integer_constant): Use wide-int interfaces.
7463 * cilk.c (declare_one_free_variable): Use tree_int_cst_lt instead of
7464 INT_CST_LT_UNSIGNED.
7465
7466 2014-05-06 Richard Biener <rguenther@suse.de>
7467
7468 * c-opts.c (c_common_post_options): For -freestanding,
7469 -fno-hosted and -fno-builtin disable pattern recognition
7470 if not enabled explicitely.
7471
7472 2014-05-02 Marek Polacek <polacek@redhat.com>
7473
7474 * c.opt (Wsizeof-pointer-memaccess): Describe option.
7475
7476 2014-05-01 Marek Polacek <polacek@redhat.com>
7477
7478 PR c/43245
7479 * c.opt (Wdiscarded-qualifiers): Add.
7480
7481 2014-04-30 Marek Polacek <polacek@redhat.com>
7482
7483 * c-ubsan.c (ubsan_instrument_division): Handle REAL_TYPEs. Perform
7484 INT_MIN / -1 sanitization only for integer types.
7485
7486 2014-04-25 Marek Polacek <polacek@redhat.com>
7487
7488 PR c/18079
7489 * c-common.c (handle_noinline_attribute): Warn if the attribute
7490 conflicts with always_inline attribute.
7491 (handle_always_inline_attribute): Warn if the attribute conflicts
7492 with noinline attribute.
7493
7494 2014-04-25 Marek Polacek <polacek@redhat.com>
7495
7496 PR c/60156
7497 * c-common.c (check_main_parameter_types): Warn about variadic main.
7498
7499 2014-04-24 Mike Stump <mikestump@comcast.net>
7500
7501 * c.opt (Wshadow-ivar): Default to on.
7502
7503 2014-04-24 Dimitris Papavasiliou <dpapavas@gmail.com>
7504
7505 * c.opt (Wshadow-ivar, flocal-ivars, fivar-visibility): Add.
7506
7507 2014-04-23 Marek Polacek <polacek@redhat.com>
7508
7509 * c-common.c (handle_tm_wrap_attribute): Tweak error message.
7510
7511 2014-04-22 Jakub Jelinek <jakub@redhat.com>
7512
7513 PR sanitizer/60275
7514 * c-ubsan.c (ubsan_instrument_return): Return __builtin_trap ()
7515 if flag_sanitize_undefined_trap_on_error.
7516 (ubsan_instrument_division, ubsan_instrument_shift,
7517 ubsan_instrument_vla): Likewise. Use __ubsan_handle_*_abort ()
7518 if !flag_sanitize_recover.
7519
7520 2014-04-22 Marc Glisse <marc.glisse@inria.fr>
7521
7522 PR libstdc++/43622
7523 * c-common.c (registered_builtin_types): Make non-static.
7524 * c-common.h (registered_builtin_types): Declare.
7525
7526 2014-04-14 Richard Biener <rguenther@suse.de>
7527 Marc Glisse <marc.glisse@inria.fr>
7528
7529 PR c/60819
7530 * c-common.c (convert_vector_to_pointer_for_subscript): Properly
7531 apply may-alias the scalar pointer type when applicable.
7532
7533 2014-04-12 Igor Zamyatin <igor.zamyatin@intel.com>
7534
7535 PR middle-end/60467
7536 * cilk.c (cilk_set_spawn_marker): Remove FUNCTION_DECL
7537 as possible argument for Cilk_spawn.
7538
7539 2014-04-11 Tobias Burnus <burnus@net-b.de>
7540
7541 PR c/60194
7542 * c.opt (Wformat-signedness): Add
7543 * c-format.c(check_format_types): Use it.
7544
7545 2014-04-11 Jason Merrill <jason@redhat.com>
7546
7547 PR c++/57926
7548 * c-common.c (sync_resolve_size, get_atomic_generic_size): Call
7549 default_conversion for an array argument.
7550
7551 2014-04-08 Marek Polacek <polacek@redhat.com>
7552
7553 PR sanitizer/60745
7554 * c-ubsan.c: Include asan.h.
7555 (ubsan_instrument_return): Call initialize_sanitizer_builtins.
7556
7557 2014-04-03 Nathan Sidwell <nathan@codesourcery.com>
7558
7559 * c.opt (Wnon-virtual-dtor): Auto set when Weffc++.
7560
7561 2014-04-02 Marek Polacek <polacek@redhat.com>
7562
7563 * c-common.h (c_expand_expr): Remove declaration.
7564
7565 2014-03-28 Jakub Jelinek <jakub@redhat.com>
7566
7567 PR c++/60689
7568 * c-common.c (add_atomic_size_parameter): When creating new
7569 params vector, push the size argument first.
7570
7571 2014-03-26 Jakub Jelinek <jakub@redhat.com>
7572
7573 * c-ubsan.c (ubsan_instrument_division, ubsan_instrument_shift,
7574 ubsan_instrument_vla, ubsan_instrument_return): Adjust
7575 ubsan_create_data callers.
7576
7577 2014-03-22 Jakub Jelinek <jakub@redhat.com>
7578
7579 PR debug/60603
7580 * c-opts.c (c_finish_options): Restore cb_file_change call to
7581 <built-in>.
7582
7583 2014-03-13 Jakub Jelinek <jakub@redhat.com>
7584
7585 PR middle-end/36282
7586 * c-pragma.c (apply_pragma_weak): Only look at
7587 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) if
7588 DECL_ASSEMBLER_NAME_SET_P (decl).
7589 (maybe_apply_pending_pragma_weaks): Exit early if
7590 vec_safe_is_empty (pending_weaks) rather than only when
7591 !pending_weaks.
7592 (maybe_apply_pragma_weak): Likewise. If !DECL_ASSEMBLER_NAME_SET_P,
7593 set assembler name back to NULL afterwards.
7594
7595 2014-03-11 Jason Merrill <jason@redhat.com>
7596
7597 * c.opt: Add -std=gnu++14.
7598
7599 2014-03-11 Ian Bolton <ian.bolton@arm.com>
7600
7601 * c-opts.c (c_common_post_options): Don't override
7602 -ffp-contract=fast if unsafe-math-optimizations is on.
7603
7604 2014-03-08 Paulo Matos <paulo@matos-sorge.com>
7605
7606 * c.opt: Enable LTO FE for fshort-double.
7607
7608 2014-03-07 Jason Merrill <jason@redhat.com>
7609
7610 * c.opt: Add -std=c++14.
7611
7612 2014-03-06 Marek Polacek <polacek@redhat.com>
7613
7614 PR c/60197
7615 * cilk.c (contains_cilk_spawn_stmt): New function.
7616 (contains_cilk_spawn_stmt_walker): Likewise.
7617 (recognize_spawn): Give error on invalid use of _Cilk_spawn.
7618 * c-common.h (contains_cilk_spawn_stmt): Add declaration.
7619
7620 2014-03-03 Jakub Jelinek <jakub@redhat.com>
7621
7622 * c-pragma.c (c_pp_lookup_pragma): Handle PRAGMA_CILK_SIMD.
7623 (init_pragma): Call cpp_register_deferred_pragma for PRAGMA_CILK_SIMD
7624 even when flag_preprocess_only.
7625
7626 2014-02-26 Jason Merrill <jason@redhat.com>
7627
7628 PR c++/59231
7629 PR c++/11586
7630 * c-common.c (shorten_compare): Don't check
7631 c_inhibit_evaluation_warnings.
7632
7633 2014-02-19 Jakub Jelinek <jakub@redhat.com>
7634
7635 PR c/37743
7636 * c-common.c (c_common_nodes_and_builtins): When initializing
7637 c_uint{16,32,64}_type_node, also set corresponding
7638 uint{16,32,64}_type_node to the same value.
7639
7640 PR c++/60267
7641 * c-pragma.c (init_pragma): Don't call cpp_register_deferred_pragma
7642 for PRAGMA_IVDEP if flag_preprocess_only.
7643
7644 2014-02-12 Jakub Jelinek <jakub@redhat.com>
7645
7646 PR c/60101
7647 * c-common.c (merge_tlist): If copy is true, call new_tlist,
7648 if false, add ADD itself, rather than vice versa.
7649 (verify_tree): For COND_EXPR, don't call merge_tlist with non-zero
7650 copy. For SAVE_EXPR, only call merge_tlist once.
7651
7652 2014-02-08 Jakub Jelinek <jakub@redhat.com>
7653
7654 PR middle-end/60092
7655 * c-common.c (handle_alloc_size_attribute): Use tree_fits_uhwi_p
7656 and tree_to_uhwi.
7657 (handle_alloc_align_attribute, handle_assume_aligned_attribute): New
7658 functions.
7659 (c_common_attribute_table): Add alloc_align and assume_aligned
7660 attributes.
7661
7662 2014-02-06 Marek Polacek <polacek@redhat.com>
7663
7664 PR c/60087
7665 * c-common.c (warn_for_sign_compare): Call warning_at with location
7666 instead of warning.
7667
7668 2014-02-05 Marek Polacek <polacek@redhat.com>
7669
7670 PR c/53123
7671 * c-omp.c (c_finish_omp_atomic): Remove unreachable return
7672 statement.
7673
7674 2014-02-04 Marek Polacek <polacek@redhat.com>
7675
7676 PR c/60036
7677 * c-common.c (conversion_warning): Unwrap C_MAYBE_CONST_EXPR and/or
7678 SAVE_EXPR.
7679
7680 2014-02-03 Marc Glisse <marc.glisse@inria.fr>
7681
7682 PR c++/53017
7683 PR c++/59211
7684 * c-common.c (handle_aligned_attribute, handle_alloc_size_attribute,
7685 handle_vector_size_attribute, handle_nonnull_attribute): Call
7686 default_conversion on the attribute argument.
7687 (handle_nonnull_attribute): Increment the argument number.
7688
7689 2014-01-31 Marek Polacek <polacek@redhat.com>
7690
7691 PR c/59963
7692 * c-common.c (add_atomic_size_parameter): Pass vNULL to
7693 build_function_call_vec.
7694 (resolve_overloaded_builtin): Likewise.
7695 * c-common.h (build_function_call_vec): Adjust declaration.
7696
7697 2014-01-30 Marek Polacek <polacek@redhat.com>
7698
7699 PR c/59940
7700 * c-common.h (unsafe_conversion_p): Adjust declaration.
7701 (warnings_for_convert_and_check): Likewise.
7702 (convert_and_check): Likewise.
7703 * c-common.c (unsafe_conversion_p): Add location parameter. Call
7704 expansion_point_location_if_in_system_header on it.
7705 (warnings_for_convert_and_check): Add location parameter. Call
7706 expansion_point_location_if_in_system_header on it. Use it.
7707 (convert_and_check): Add location parameter. Use it.
7708 (conversion_warning): Likewise.
7709 (c_add_case_label): Adjust convert_and_check calls.
7710 (scalar_to_vector): Adjust unsafe_conversion_p calls.
7711
7712 2014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
7713
7714 * c-common.c (c_define_builtins): Replaced flag_enable_cilkplus with
7715 flag_cilkplus.
7716 * c-pragma.c (init_pragma): Likewise.
7717 * c.opt: Likewise.
7718
7719 2014-01-23 Marek Polacek <polacek@redhat.com>
7720
7721 PR c/59846
7722 * c-common.c (shorten_compare): Add location_t parameter.
7723 * c-common.h (shorten_binary_op): Adjust declaration.
7724
7725 2014-01-23 Marek Polacek <polacek@redhat.com>
7726
7727 PR c/58346
7728 * c-common.c (pointer_to_zero_sized_aggr_p): New function.
7729 * c-common.h: Declare it.
7730
7731 2014-01-20 Eric Botcazou <ebotcazou@adacore.com>
7732
7733 * c-ada-spec.h (dump_ada_specs): Revert prototype change.
7734 * c-ada-spec.c (dump_ads): Likewise.
7735 (cpp_check): Likewise.
7736 (dump_ada_specs): Likewise.
7737
7738 2014-01-15 Laurent Alfonsi <laurent.alfonsi@st.com>
7739
7740 PR c++/49718
7741 * c-common.c (handle_no_instrument_function_attribute): Allow
7742 no_instrument_function attribute in class member
7743 definition/declaration.
7744
7745 2014-01-15 Jakub Jelinek <jakub@redhat.com>
7746
7747 PR c/58943
7748 * c-omp.c (c_finish_omp_atomic): Set in_late_binary_op around
7749 build_modify_expr with non-NOP_EXPR opcode. Handle return from it
7750 being COMPOUND_EXPR.
7751 (c_finish_omp_for): Handle incr being COMPOUND_EXPR with first
7752 operand a SAVE_EXPR and second MODIFY_EXPR.
7753
7754 2014-01-09 Jakub Jelinek <jakub@redhat.com>
7755
7756 PR target/58115
7757 * c-pch.c (c_common_write_pch): Call
7758 prepare_target_option_nodes_for_pch.
7759
7760 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
7761
7762 Update copyright years
7763
7764 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
7765
7766 * array-notation-common.c, c-cilkplus.c: Use the standard form for
7767 the copyright notice.
7768
7769 2013-12-28 Eric Botcazou <ebotcazou@adacore.com>
7770
7771 * c-ada-spec.c (print_constructor): New function.
7772 (print_destructor): Retrieve the origin of the destructor.
7773 (print_ada_declaration): Revamp handling of constructors/destructors.
7774
7775 2013-12-23 Stuart Hastings <stuart@apple.com>
7776 Bill Maddox <maddox@google.com>
7777 Jason Merrill <jason@redhat.com>
7778
7779 * c.opt: Add -fdeclone-ctor-dtor.
7780 * c-opts.c (c_common_post_options): Default to on iff -Os.
7781
7782 2013-12-18 Balaji V. Iyer <balaji.v.iyer@intel.com>
7783
7784 * c-common.c (c_common_attribute_table): Added "cilk simd function"
7785 attribute.
7786 * c-pragma.h (enum pragma_cilk_clause): Remove.
7787 (enum pragma_omp_clause): Added the following fields:
7788 PRAGMA_CILK_CLAUSE_NOMASK, PRAGMA_CILK_CLAUSE_MASK,
7789 PRAGMA_CILK_CLAUSE_VECTORLENGTH, PRAGMA_CILK_CLAUSE_NONE,
7790 PRAGMA_CILK_CLAUSE_LINEAR, PRAGMA_CILK_CLAUSE_PRIVATE,
7791 PRAGMA_CILK_CLAUSE_FIRSTPRIVATE, PRAGMA_CILK_CLAUSE_LASTPRIVATE,
7792 PRAGMA_CILK_CLAUSE_UNIFORM.
7793
7794
7795 2013-12-11 Balaji V. Iyer <balaji.v.iyer@intel.com>
7796
7797 * cilk.c (cilk_outline): Made this function non-static.
7798 (gimplify_cilk_spawn): Removed pre_p and post_p arguments.
7799 (create_cilk_wrapper): Added a new parameter: a function pointer.
7800 (c_install_body_w_frame_cleanup): Remove
7801 (extract_free_variables): Added VEC_INIT_EXPR and CONSTRUCTOR case.
7802 * c-common.h (cilk_outline): New prototype.
7803 (gimplify_cilk_spawn): Removed two parameters.
7804 (cilk_install_body_with_frame_cleanup): New prototype.
7805 * c-gimplify.c (c_gimplify_expr): Added MODIFY_EXPR, CALL_EXPR and
7806 CILK_SPAWN_STMT case.
7807
7808 2013-12-11 Bernd Schmidt <bernds@codesourcery.com>
7809
7810 * c-common.c (c_fully_fold_internal): Handle ADDR_SPACE_CONVERT_EXPR.
7811
7812 * c-common.h (enum c_tree_index): Remove CTI_INT_ARRAY_TYPE.
7813 (int_array_type_node): Remove.
7814 * c-common.c (c_common_nodes_and_builtins): Don't build it.
7815
7816 2013-12-05 Marek Polacek <polacek@redhat.com>
7817
7818 PR c/52023
7819 * c-common.c (c_sizeof_or_alignof_type): Move a declaration into
7820 [ADJUST_FIELD_ALIGN].
7821
7822 2013-12-04 Joseph Myers <joseph@codesourcery.com>
7823
7824 PR c/52023
7825 * c-common.c (c_sizeof_or_alignof_type): Add parameter min_alignof
7826 and check field alignment if set.
7827 * c-common.h (c_sizeof_or_alignof_type): Update prototype.
7828 (c_sizeof, c_alignof): Update calls to c_sizeof_or_alignof_type.
7829
7830 2013-12-04 Jakub Jelinek <jakub@redhat.com>
7831 Marek Polacek <polacek@redhat.com>
7832
7833 * c-gimplify.c (c_gimplify_expr): If doing the integer-overflow
7834 sanitization, call unsigned_type_for only when !TYPE_OVERFLOW_WRAPS.
7835
7836 2013-11-29 H.J. Lu <hongjiu.lu@intel.com>
7837
7838 PR c/59309
7839 * cilk.c (gimplify_cilk_spawn): Properly handle function without
7840 arguments.
7841
7842 2013-11-29 Jakub Jelinek <jakub@redhat.com>
7843
7844 PR c/59280
7845 * c-common.c (get_priority): If TREE_VALUE (args) is IDENTIFIER_NODE,
7846 goto invalid. If it is error_mark_node, don't issue further
7847 diagnostics.
7848
7849 2013-11-28 Sergey Ostanevich <sergos.gnu@gmail.com>
7850
7851 * c.opt (Wopenmp-simd): New.
7852
7853 2013-11-22 Jakub Jelinek <jakub@redhat.com>
7854
7855 * c-ubsan.h (ubsan_instrument_return): New prototype.
7856 * c-ubsan.c (ubsan_instrument_return): New function.
7857
7858 2013-11-22 Andrew MacLeod <amacleod@redhat.com>
7859
7860 * c-common.c: Add required include files from gimple.h.
7861 * c-gimplify.c: Likewise.
7862 * cilk.c: Likewise.
7863
7864 2013-11-22 David Malcolm <dmalcolm@redhat.com>
7865
7866 * c-common.c (unsafe_conversion_p): Remove use of
7867 EXPR_LOC_OR_HERE macro.
7868 (conversion_warning): Likewise.
7869 (warnings_for_convert_and_check): Likewise.
7870 (warn_for_collisions_1): Likewise.
7871 (shorten_compare): Likewise, and remove use of in_system_header
7872 macro, using the location from the former.
7873 * c-lex.c (dump_one_header): Remove use of input_filename macro.
7874 (cb_def_pragma): Remove use of in_system_header macro.
7875 (lex_string): Likewise.
7876 * c-pragma.c (handle_pragma_float_const_decimal64): Likewise.
7877
7878 2013-11-20 Kenneth Zadeck <zadeck@naturalbridge.com>
7879 Mike Stump <mikestump@comcast.net>
7880 Richard Sandiford <rdsandiford@googlemail.com>
7881
7882 * c-ada-spec.c (is_simple_enum): Use tree_to_shwi and tree_to_uhwi
7883 instead of TREE_INT_CST_LOW, in cases where there is a protecting
7884 tree_fits_shwi_p or tree_fits_uhwi_p.
7885 (dump_generic_ada_node): Likewise.
7886 * c-format.c (check_format_arg): Likewise.
7887 * c-pretty-print.c (pp_c_integer_constant): Likewise.
7888
7889 2013-11-20 Kenneth Zadeck <zadeck@naturalbridge.com>
7890
7891 * c-common.c (check_function_arguments_recurse): Use tree_to_uhwi.
7892
7893 2013-11-19 Joshua J Cogliati <jrincayc@yahoo.com>
7894
7895 PR c/53001
7896 * c-common.c (unsafe_conversion_p): Make this function
7897 return an enumeration with more detail.
7898 (conversion_warning): Use the new return type of
7899 unsafe_conversion_p to separately warn either about conversions
7900 that lower floating point number precision or about the other
7901 kinds of conversions.
7902 * c-common.h (enum conversion_safety): New enumeration.
7903 (unsafe_conversion_p): switching return type to
7904 conversion_safety enumeration.
7905 * c.opt: Adding new warning -Wfloat-conversion and
7906 enabling it with -Wconversion.
7907
7908 2013-11-19 Basile Starynkevitch <basile@starynkevitch.net>
7909
7910 * c-opts.c: Include plugin.h.
7911 (cb_file_change): Invoke plugin event PLUGIN_INCLUDE_FILE.
7912
7913 2013-11-19 Marek Polacek <polacek@redhat.com>
7914
7915 * c-ubsan.c (ubsan_instrument_division): Adjust ubsan_create_data
7916 call.
7917 (ubsan_instrument_shift): Likewise.
7918 (ubsan_instrument_vla): Likewise.
7919
7920 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7921
7922 * c-common.c (convert_vector_to_pointer_for_subscript): Remove
7923 cast to unsigned type.
7924
7925 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7926
7927 * c-common.c (fold_offsetof_1): Use tree_to_uhwi rather than
7928 tree_low_cst.
7929 (complete_array_type): Update comment to refer to tree_to_[su]hwi
7930 rather than tree_low_cst.
7931
7932 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7933
7934 * c-common.c, c-cppbuiltin.c: Replace tree_low_cst (..., 1) with
7935 tree_to_uhwi throughout.
7936
7937 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7938
7939 * c-common.c, c-format.c, c-omp.c, c-pretty-print.c: Replace
7940 tree_low_cst (..., 0) with tree_to_shwi throughout.
7941
7942 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7943
7944 * c-ada-spec.c, c-common.c, c-pretty-print.c: Replace
7945 host_integerp (..., 1) with tree_fits_uhwi_p throughout.
7946
7947 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com>
7948
7949 * c-ada-spec.c, c-common.c, c-format.c, c-pretty-print.c: Replace
7950 host_integerp (..., 0) with tree_fits_shwi_p throughout.
7951
7952 2013-11-15 Aldy Hernandez <aldyh@redhat.com>
7953
7954 * c-cilkplus.c: New file.
7955 * c-common.c (readonly_error): Add location argument.
7956 * c-common.h (readonly_error): Same.
7957 (c_finish_cilk_clauses): Protoize.
7958 (c_check_cilk_loop): Same.
7959 c-omp.c (c_finish_omp_for): Handle CILK_SIMD nodes.
7960 Do not fail on error_mark_node.
7961 Abstract increment canonicalization to here...
7962 (c_omp_for_incr_canonicalize_ptr): New.
7963 c-pragma.c (init_pragma): Register "simd" pragma.
7964 c-pragma.h (enum pragma_kind): Add PRAGMA_CILK_SIMD.
7965 (enum pragma_cilk_clause): New.
7966
7967 2013-11-15 Richard Sandiford <rdsandiford@googlemail.com>
7968
7969 * c-pretty-print.c (pp_c_character_constant): Remove unnecessary
7970 wchar_type and host_integerp checks.
7971
7972 2013-11-14 Andrew MacLeod <amacleod@redhat.com>
7973
7974 * c-common.c: Likewise.
7975 * c-gimplify.c: Likewise.
7976 * cilk.c: Likewise.
7977
7978 2013-11-14 Diego Novillo <dnovillo@google.com>
7979
7980 * c-common.c: Include fold-const.h.
7981 Include stor-layout.h.
7982 Include calls.h.
7983 Include stringpool.h.
7984 Include attribs.h.
7985 Include varasm.h.
7986 Include trans-mem.h.
7987 * c-cppbuiltin.c: Include stor-layout.h.
7988 Include stringpool.h.
7989 * c-format.c: Include stringpool.h.
7990 * c-lex.c: Include stringpool.h.
7991 Include stor-layout.h.
7992 * c-pragma.c: Include stringpool.h.
7993 Include attribs.h.
7994 Include varasm.h.
7995 Include gcc-symtab.h.
7996 * c-pretty-print.c: Include stor-layout.h.
7997 Include attribs.h.
7998 * cilk.c: Include stringpool.h.
7999 Include calls.h.
8000
8001 2013-11-13 Joseph Myers <joseph@codesourcery.com>
8002
8003 * c-common.h (enum rid): Add RID_AUTO_TYPE.
8004 * c-common.c (c_common_reswords): Add __auto_type.
8005 (keyword_begins_type_specifier): Handle RID_AUTO_TYPE.
8006
8007 2013-11-12 Andrew MacLeod <amacleod@redhat.com>
8008
8009 * c-common.c: Include gimplify.h.
8010 * c-gimplify.c: Likewise.
8011 * cilk.c: Likewise.
8012 * c-omp.c: Include gimple-expr.h instead of gimple.h.
8013 * c-ubsan.c: Don't include gimple.h.
8014
8015 2013-11-12 Joseph Myers <joseph@codesourcery.com>
8016
8017 * c-common.c (c_common_reswords): Add _Thread_local.
8018
8019 2013-11-09 Joseph Myers <joseph@codesourcery.com>
8020
8021 * c-common.c (atomic_size_supported_p): New function.
8022 (resolve_overloaded_atomic_exchange)
8023 (resolve_overloaded_atomic_compare_exchange)
8024 (resolve_overloaded_atomic_load, resolve_overloaded_atomic_store):
8025 Use it instead of comparing size with a local list of sizes.
8026
8027 2013-11-07 Andrew MacLeod <amacleod@redhat.com>
8028 Joseph Myers <joseph@codesourcery.com>
8029
8030 * c-common.h (enum rid): Add RID_ATOMIC.
8031 * c-common.c (c_common_reswords): Add _Atomic.
8032 (sync_resolve_params): Use TYPE_MAIN_VARIANT on pointer argument.
8033 (keyword_is_type_qualifier): Accept RID_ATOMIC.
8034 * c-format.c (check_format_types): Check for extra _Atomic
8035 qualifiers in format argument.
8036 * c-pretty-print.c (pp_c_cv_qualifiers): Handle atomic qualifier.
8037 (pp_c_type_qualifier_list): Mention _Atomic in comment.
8038
8039 2013-11-06 Tobias Burnus <burnus@net-b.de>
8040
8041 * c-common.c (reason_option_codes_t): Add CPP_W_DATE_TIME.
8042
8043 2013-11-06 Joseph Myers <joseph@codesourcery.com>
8044
8045 * c-opts.c (c_common_post_options): Set -ffp-contract=off in C
8046 standards modes.
8047 * c-cppbuiltin.c (cpp_iec_559_value): Consider -ffp-contract=fast
8048 to mean lack of IEEE 754 support.
8049
8050 2013-11-05 Tobias Burnus <burnus@net-b.de>
8051
8052 * c.opt (-Wdate-time): New option
8053 * c-opts.c (sanitize_cpp_opts): Pass on to libcpp.
8054
8055 2013-11-05 Joseph Myers <joseph@codesourcery.com>
8056
8057 * c-cppbuiltin.c (cpp_iec_559_value): Test
8058 flag_excess_precision_cmdline not flag_excess_precision.
8059
8060 2013-11-05 Tobias Burnus <burnus@net-b.de>
8061
8062 * c.opt (fopenmp-simd): New option.
8063 * c-pragma.c (omp_pragmas): Move pragmas which can contain simd to ...
8064 (omp_pragmas): ... this new struct.
8065 (c_pp_lookup_pragma): Also walk omp_pragmas.
8066 (init_pragma): Init pragmas for -fopenmp-simd.
8067
8068 2013-11-04 Marek Polacek <polacek@redhat.com>
8069
8070 PR c++/58979
8071 * c-common.c (invalid_indirection_error): Handle RO_ARROW_STAR case.
8072
8073 2013-11-04 Joseph Myers <joseph@codesourcery.com>
8074
8075 * c-cppbuiltin.c (cpp_iec_559_value, cpp_iec_559_complex_value):
8076 New functions.
8077 (c_cpp_builtins): Define __GCC_IEC_559 and __GCC_IEC_559_COMPLEX.
8078
8079 2013-11-04 Eric Botcazou <ebotcazou@adacore.com>
8080
8081 * c-ada-spec.h (cpp_operation): Add IS_TRIVIAL.
8082 (dump_ada_specs): Adjust prototype of second callback.
8083 * c-ada-spec.c (cpp_check): New global variable.
8084 (dump_ada_nodes): Remove cpp_check parameter and do not pass it down.
8085 (print_generic_ada_decl): Likewise.
8086 (has_static_fields): Change return type to bool and add guard.
8087 (has_nontrivial_methods): New predicate.
8088 (is_tagged_type): Change return type to bool.
8089 (separate_class_package): Call has_nontrivial_methods.
8090 (pp_ada_tree_identifier): Minor tweaks.
8091 (dump_ada_function_declaration): Adjust calls to dump_generic_ada_node.
8092 (dump_ada_array_domains): Likewise.
8093 (dump_ada_array_type): Likewise.
8094 (dump_template_types): Remove cpp_check parameter and do not pass it to
8095 dump_generic_ada_node.
8096 (dump_ada_template): Likewise.
8097 (dump_generic_ada_node): Remove cpp_check parameter and do not pass it
8098 recursively.
8099 (print_ada_methods): Change return type to integer. Remove cpp_check
8100 parameter and do not pass it down.
8101 (dump_nested_types): Remove cpp_check parameter and do not pass it to
8102 dump_generic_ada_node.
8103 (print_ada_declaration): Likewise. Test RECORD_OR_UNION_TYPE_P before
8104 accessing methods.
8105 (print_ada_struct_decl): Remove cpp_check parameter and do not pass it
8106 down. Use has_nontrivial_methods to recognize C++ classes. Use return
8107 value of print_ada_methods.
8108 (dump_ads): Rename cpp_check parameter to check and adjust prototype.
8109 Set cpp_check to it before invoking dump_ada_nodes.
8110 (dump_ada_specs): Likewise.
8111
8112 2013-11-03 Marek Polacek <polacek@redhat.com>
8113
8114 * c-ubsan.c: Don't include hash-table.h.
8115 (ubsan_instrument_vla): New function.
8116 * c-ubsan.h: Declare it.
8117
8118 2013-10-31 David Malcolm <dmalcolm@redhat.com>
8119
8120 Automated part of renaming of symtab_node_base to symtab_node.
8121
8122 Patch autogenerated by rename_symtab.py from
8123 https://github.com/davidmalcolm/gcc-refactoring-scripts
8124 revision 58bb219cc090b2f4516a9297d868c245495ee622
8125
8126 * c-pragma.c (maybe_apply_pending_pragma_weaks): Rename
8127 symtab_node_base to symtab_node.
8128
8129 2013-10-31 Edward Smith-Rowland <3dw4rd@verizon.net>
8130
8131 Implement C++14 digit separators.
8132 * c-lex.c (interpret_float): Remove digit separators from scratch string
8133 before building real literal.
8134
8135 2013-10-30 Jakub Jelinek <jakub@redhat.com>
8136
8137 * cilk.c (create_cilk_helper_decl): Use HOST_WIDE_INT_PRINT_DEC.
8138
8139 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
8140
8141 * c-common.c (c_common_reswords[]): Added _Cilk_spawn and _Cilk_sync
8142 fields.
8143 (c_define_builtins): Called cilk_init_builtins if Cilk Plus is
8144 enabled.
8145 * c-common.h (enum rid): Added RID_CILK_SPAWN and RID_CILK_SYNC.
8146 (insert_cilk_frame): New prototype.
8147 (cilk_init_builtins): Likewise.
8148 (gimplify_cilk_spawn): Likewise.
8149 (c_cilk_install_body_w_frame_cleanup): Likewise.
8150 (cilk_detect_spawn_and_unwrap): Likewise.
8151 (cilk_set_spawn_marker): Likewise.
8152 (build_cilk_sync): Likewise.
8153 (build_cilk_spawn): Likewise.
8154 * cilk.c: New file.
8155
8156 2013-10-29 David Malcolm <dmalcolm@redhat.com>
8157
8158 Patch autogenerated by refactor_symtab.py from
8159 https://github.com/davidmalcolm/gcc-refactoring-scripts
8160 revision 58bb219cc090b2f4516a9297d868c245495ee622
8161
8162 * c-gimplify.c (c_genericize): Update for conversion of symtab types
8163 to a true class hierarchy.
8164 * c-pragma.c (maybe_apply_pending_pragma_weaks): Likewise.
8165
8166 2013-10-27 Richard Sandiford <rdsandiford@googlemail.com>
8167
8168 * c-lex.c (interpret_integer): Remove call to cpp_num_sign_extend.
8169
8170 2013-10-26 Jeff Law <law@redhat.com>
8171
8172 * c-common.c (c_define_builtins): Remove mudflap support.
8173 * c.opt: Ignore and warn for mudflap options.
8174
8175 2013-10-24 Tobias Burnus <burnus@net-b.de>
8176
8177 PR other/33426
8178 * c-pragma.c (init_pragma) Add #pragma ivdep handling.
8179 * c-pragma.h (pragma_kind): Add PRAGMA_IVDEP.
8180
8181 2013-10-23 Jason Merrill <jason@redhat.com>
8182
8183 * c-format.c (gcc_cxxdiag_char_table): Add %X.
8184
8185 2013-10-11 Jakub Jelinek <jakub@redhat.com>
8186
8187 * c-common.h (omp_clause_mask::operator !=): New method.
8188 * c-omp.c (c_omp_split_clauses): Use if ((mask & something) != 0)
8189 instead of if (mask & something) tests everywhere.
8190
8191 * c-cppbuiltin.c (c_cpp_builtins): Predefine _OPENMP to
8192 201307 instead of 201107.
8193 * c-common.c (DEF_FUNCTION_TYPE_8): Define.
8194 (c_common_attribute_table): Add "omp declare target" and
8195 "omp declare simd" attributes.
8196 (handle_omp_declare_target_attribute,
8197 handle_omp_declare_simd_attribute): New functions.
8198 * c-omp.c: Include c-pragma.h.
8199 (c_finish_omp_taskgroup): New function.
8200 (c_finish_omp_atomic): Add swapped argument, if true,
8201 build the operation first with rhs, lhs arguments and use NOP_EXPR
8202 build_modify_expr.
8203 (c_finish_omp_for): Add code argument, pass it down to make_code.
8204 (c_omp_split_clauses): New function.
8205 (c_split_parallel_clauses): Removed.
8206 (c_omp_declare_simd_clause_cmp, c_omp_declare_simd_clauses_to_numbers,
8207 c_omp_declare_simd_clauses_to_decls): New functions.
8208 * c-common.h (omp_clause_mask): New type.
8209 (OMP_CLAUSE_MASK_1): Define.
8210 (omp_clause_mask::omp_clause_mask, omp_clause_mask::operator &=,
8211 omp_clause_mask::operator |=, omp_clause_mask::operator ~,
8212 omp_clause_mask::operator |, omp_clause_mask::operator &,
8213 omp_clause_mask::operator <<, omp_clause_mask::operator >>,
8214 omp_clause_mask::operator ==): New methods.
8215 (enum c_omp_clause_split): New.
8216 (c_finish_omp_taskgroup): New prototype.
8217 (c_finish_omp_atomic): Add swapped argument.
8218 (c_finish_omp_for): Add code argument.
8219 (c_omp_split_clauses): New prototype.
8220 (c_split_parallel_clauses): Removed.
8221 (c_omp_declare_simd_clauses_to_numbers,
8222 c_omp_declare_simd_clauses_to_decls): New prototypes.
8223 * c-pragma.c (omp_pragmas): Add new OpenMP 4.0 constructs.
8224 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_CANCEL,
8225 PRAGMA_OMP_CANCELLATION_POINT, PRAGMA_OMP_DECLARE_REDUCTION,
8226 PRAGMA_OMP_DISTRIBUTE, PRAGMA_OMP_END_DECLARE_TARGET, PRAGMA_OMP_SIMD,
8227 PRAGMA_OMP_TARGET, PRAGMA_OMP_TASKGROUP and PRAGMA_OMP_TEAMS.
8228 Remove PRAGMA_OMP_PARALLEL_FOR and PRAGMA_OMP_PARALLEL_SECTIONS.
8229 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_ALIGNED,
8230 PRAGMA_OMP_CLAUSE_DEPEND, PRAGMA_OMP_CLAUSE_DEVICE,
8231 PRAGMA_OMP_CLAUSE_DIST_SCHEDULE, PRAGMA_OMP_CLAUSE_FOR,
8232 PRAGMA_OMP_CLAUSE_FROM, PRAGMA_OMP_CLAUSE_INBRANCH,
8233 PRAGMA_OMP_CLAUSE_LINEAR, PRAGMA_OMP_CLAUSE_MAP,
8234 PRAGMA_OMP_CLAUSE_NOTINBRANCH, PRAGMA_OMP_CLAUSE_NUM_TEAMS,
8235 PRAGMA_OMP_CLAUSE_PARALLEL, PRAGMA_OMP_CLAUSE_PROC_BIND,
8236 PRAGMA_OMP_CLAUSE_SAFELEN, PRAGMA_OMP_CLAUSE_SECTIONS,
8237 PRAGMA_OMP_CLAUSE_SIMDLEN, PRAGMA_OMP_CLAUSE_TASKGROUP,
8238 PRAGMA_OMP_CLAUSE_THREAD_LIMIT, PRAGMA_OMP_CLAUSE_TO and
8239 PRAGMA_OMP_CLAUSE_UNIFORM.
8240
8241 2013-10-09 Marc Glisse <marc.glisse@inria.fr>
8242
8243 PR tree-optimization/20318
8244 * c-common.c (handle_returns_nonnull_attribute): New function.
8245 (c_common_attribute_table): Add returns_nonnull.
8246
8247 2013-10-03 Marc Glisse <marc.glisse@inria.fr>
8248
8249 PR c++/19476
8250 * c.opt (fcheck-new): Move to common.opt.
8251
8252 2013-09-25 Marek Polacek <polacek@redhat.com>
8253 Jakub Jelinek <jakub@redhat.com>
8254
8255 PR sanitizer/58413
8256 * c-ubsan.c (ubsan_instrument_shift): Don't instrument
8257 an expression if we can prove it is correct.
8258 (ubsan_instrument_division): Likewise. Remove unnecessary
8259 check.
8260
8261 2013-09-18 Marek Polacek <polacek@redhat.com>
8262
8263 PR sanitizer/58411
8264 * c-common.c (handle_no_sanitize_undefined_attribute): New function.
8265 Declare it.
8266 (struct attribute_spec c_common_att): Add no_sanitize_undefined.
8267
8268 2013-09-14 Iain Sandoe <iain@codesourcery.com>
8269
8270 PR target/48094
8271 * c.opt (fgnu-runtime, fnext-runtime, fobjc-abi-version,
8272 fobjc-gc, freplace-objc-classes): Accept for LTO.
8273
8274 2013-09-13 Jacek Caban <jacek@codeweavers.com>
8275
8276 * c-target.def: New hook
8277
8278 2013-09-09 Paolo Carlini <paolo.carlini@oracle.com>
8279
8280 PR c++/43452
8281 * c.opt (Wdelete-incomplete): Add.
8282
8283 2013-09-08 Joern Rennecke <joern.rennecke@embecosm.com>
8284
8285 * c-common.c (same_scalar_type_ignoring_signedness): Delete.
8286 (vector_types_compatible_elements_p): New function.
8287 * c-common.h: (same_scalar_type_ignoring_signedness): Delete
8288 declaration.
8289 (vector_types_compatible_elements_p): Declare.
8290
8291 2013-09-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
8292
8293 * c-pretty-print.h (c_pretty_printer::simple_type_specifier): Now
8294 a virtual member function.
8295 (pp_simple_type_specifier): Remove.
8296 (pp_c_type_specifier): Likewise.
8297 * c-pretty-print.c (c_pretty_printer::simple_type_specifier):
8298 Rename from pp_c_type_specifier. Adjust.
8299 (c_pretty_printer::c_pretty_printer): Do not assign to
8300 simple_type_specifier.
8301
8302 2013-09-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
8303
8304 * c-pretty-print.h (c_pretty_printer::type_id): Now a virtual
8305 member function.
8306 (c_pretty_printer::storage_class_specifier): Likewise.
8307 (c_pretty_printer::initializer): Likewise.
8308 (pp_declaration): Remove.
8309 (pp_declaration_specifiers): Likewise.
8310 (pp_abstract_declarator): Likewise.
8311 (pp_declarator): Likewise.
8312 (pp_type_id): Likewise.
8313 (pp_statement): Likewise.
8314 (pp_constant): Likewise.
8315 (pp_id_expression): Likewise.
8316 (pp_primary_expression): Likewise.
8317 (pp_unary_expression): Likewise.
8318 (pp_multiplicative_expression): Likewise.
8319 (pp_conditional_expression): Likewise.
8320 (pp_assignment_expression): Likewise.
8321 (pp_expression): Likewise.
8322 (pp_c_type_id): Likewise.
8323 (pp_c_storage_class_specifier): Likewise.
8324 * c-pretty-print.c (pp_c_type_cast): Tidy.
8325 (pp_c_pointer): Likewise.
8326 (pp_c_type_specifier): Likewise.
8327 (pp_c_parameter_type_list): Likewise.
8328 (pp_c_function_definition): Likewise.
8329 (pp_c_init_declarator): Likewise.
8330 (pp_c_initializer_list): Likewise.
8331 (pp_c_constructor_elts): Likewise.
8332 (c_pretty_printer::direct_abstract_declarator): Likewise.
8333 (c_pretty_printer::declaration_specifiers): Likewise.
8334 (c_pretty_printer::primary_expression): Likewise.
8335 (c_pretty_printer::postfix_expression): Likewise.
8336 (c_pretty_printer::type_id): Rename from pp_c_type_id.
8337 (c_pretty_printer::storage_class_specifier): Rename from
8338 pp_c_storage_class_specifier.
8339 (c_pretty_printer::initializer): Rename from pp_c_initializer.
8340 (c_pretty_printer::c_pretty_printer): Do not assign to type_id,
8341 storage_class_specifier, initializer, offset_list, flags.
8342
8343 2013-08-30 Marek Polacek <polacek@redhat.com>
8344
8345 * c-ubsan.c: New file.
8346 * c-ubsan.h: New file.
8347
8348 2013-08-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
8349
8350 * c-pretty-print.h (c_pretty_printer::declaration): Now a virtual
8351 member function.
8352 (c_pretty_printer::declaration_specifiers): Likewise.
8353 (c_pretty_printer::declarator): Likewise.
8354 (c_pretty_printer::abstract_declarator): Likewise.
8355 (c_pretty_printer::direct_abstract_declarator): Likewise.
8356 (c_pretty_printer::direct_declarator): Likewise.
8357 (c_pretty_printer::function_specifier): Likewise.
8358 (pp_declaration): Adjust.
8359 (pp_declaration_specifiers): Likewise.
8360 (pp_abstract_declarator): Likewise.
8361 (pp_direct_declarator): Likewise.
8362 (pp_function_specifier): Likewise.
8363 (pp_direct_abstract_declarator): Remove as unused.
8364 (pp_c_declaration): Remove.
8365 (pp_c_declaration_specifiers): Likewise.
8366 (pp_c_declarator): Likewise.
8367 (pp_c_direct_declarator): Likewise.
8368 (pp_c_function_specifier): Likewise.
8369 (pp_c_direct_abstract_declarator): Likewise.
8370 * c-pretty-print.c (c_pretty_printer::abstract_declarator): Rename
8371 from pp_c_abstract_declarator. Adjust.
8372 (c_pretty_printer::direct_abstract_declarator): Rename from
8373 pp_c_direct_abstract_declarator. Adjust.
8374 (c_pretty_printer::function_specifier): Rename from
8375 pp_c_function_specifier. Adjust.
8376 (c_pretty_printer::declaration_specifiers): Rename from
8377 pp_c_declaration_specifiers. Adjust.
8378 (c_pretty_printer::direct_declarator): Rename from
8379 pp_c_direct_declarator. Adjust.
8380 (c_pretty_printer::declarator): Rename from pp_c_declarator. Adjust.
8381 (c_pretty_printer::declaration): Rename from pp_c_declaration. Adjust.
8382 (c_pretty_printer::c_pretty_printer): Do not assign to
8383 declaration, declaration_specifiers, declarator,
8384 direct_declarator, direct_abstract_declarator, function_specifier.
8385
8386 2013-08-26 Gabriel Dos Reis <gdre@integrable-solutions.net>
8387
8388 * c-pretty-print.h (c_pretty_printer::unary_expression): Now a
8389 virtual member function.
8390 (c_pretty_printer::multiplicative_expression): Likewise.
8391 (c_pretty_printer::conditional_expression): Likewise.
8392 (c_pretty_printer::assignment_expression): Likewise.
8393 (c_pretty_printer::expression): Likewise.
8394 (pp_unary_expression): Adjust.
8395 (pp_multiplicative_expression): Likewise.
8396 (pp_assignment_expression): Likewise.
8397 (pp_conditional_expression): Likewise.
8398 (pp_expression): Likewise.
8399 * c-pretty-print.c (c_pretty_printer::unary_expression): Rename
8400 from pp_c_unary_expression. Adjust.
8401 (c_pretty_printer::multiplicative_expression): Rename from
8402 pp_c_multiplicative_expression. Adjust.
8403 (c_pretty_printer::conditional_expression): Rename from
8404 pp_c_conditional_expression. Adjust.
8405 (c_pretty_printer::assignment_expression): Rename from
8406 pp_c_assignment_expression. Adjust.
8407 (c_pretty_printer::expression): Rename from pp_c_expression. Adjust.
8408 (c_pretty_printer::c_pretty_printer): Do not assign to
8409 unary_expression, multiplicative_expression,
8410 conditional_expression, expression.
8411
8412 2013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
8413
8414 * c-pretty-print.h (c_pretty_printer::postfix_expression): Now a
8415 virtual member function.
8416 (pp_postfix_expression): Adjust.
8417 (pp_c_postfix_expression): Remove.
8418 * c-pretty-print.c (c_pretty_printer::postfix_expression): Rename
8419 from pp_c_postfix_expression. Adjust.
8420 (c_pretty_printer::c_pretty_printer): Do not assign to
8421 postfix_expression.
8422
8423 2013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
8424
8425 * c-pretty-print.h (c_pretty_printer::primary_expression): Now a
8426 virtua member function.
8427 (pp_primary_expression): Adjust.
8428 (pp_c_primary_expression): Remove.
8429 * c-pretty-print.c (c_pretty_printer::primary_expression): Rename
8430 from pp_c_primary_expression. Adjust.
8431 (pp_c_initializer_list): Use pp_primary_expression.
8432 (c_pretty_printer::c_pretty_printer): Do not assign to
8433 primary_expression.
8434
8435 2013-08-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
8436
8437 * c-pretty-print.h (c_pretty_printer::translate_string): Declare.
8438 * c-pretty-print.c (M_): Remove.
8439 (c_pretty_printer::translate_string): Define.
8440 (pp_c_type_specifier): Use it.
8441 (pp_c_primary_expression): Likewise.
8442 (pp_c_expression): Likewise.
8443
8444 2013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
8445
8446 * c-pretty-print.h (c_pretty_printer::id_expression): Now a
8447 virtual function.
8448 (pp_c_id_expression): Remove.
8449 (pp_id_expression): Adjust.
8450 * c-pretty-print.c (c_pretty_printer::id_expression): Rename from
8451 pp_c_id_expression. Adjust.
8452 (pp_c_postfix_expression): Use pp_id_expression.
8453 (c_pretty_printer::c_pretty_printer): Do not assign to id_expression.
8454
8455 2013-08-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
8456
8457 * c-pretty-print.h (c_pretty_printer::constant): Now a virtual
8458 member function.
8459 (pp_constant): Adjust.
8460 (pp_c_constant): Remove.
8461 * c-pretty-print.c (c_pretty_printer::constant): Rename from
8462 pp_c_constant. Adjust.
8463 (pp_c_constant)
8464 (pp_c_primary_expression): Call pp_constant in lieu of pp_c_constant.
8465 (c_pretty_printer::c_pretty_printer): Remove assignment to constant.
8466
8467 2013-08-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
8468
8469 * c-pretty-print.h (pp_c_pretty_printer_init): Remove.
8470 (c_pretty_printer::c_pretty_printer): Declare.
8471 * c-pretty-print.c (pretty_printer::c_pretty_printer): Rename from
8472 c_pretty_printer_init. Adjust.
8473 (print_c_tree): Do not call c_pretty_printer_init.
8474 * c-ada-spec.c (dump_ads): Remove call to pp_construct.
8475
8476 2013-08-09 Arnaud Charlet <charlet@adacore.com>
8477
8478 * c-ada-spec.c (print_ada_declaration): Prevent accessing null asm name
8479
8480 2013-08-05 Paolo Carlini <paolo.carlini@oracle.com>
8481
8482 PR c++/58080
8483 * c-common.c (pointer_int_sum): Add bool parameter.
8484 * c-common.h (pointer_int_sum): Adjust declaration.
8485
8486 2013-08-05 Gabriel Dos Reis <gdr@integrable-solutions.net>
8487
8488 * c-pretty-print.c (print_c_tree): Simplify. Use non-static local
8489 c_pretty_printer variable.
8490
8491 2013-08-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
8492
8493 * c-pretty-print.h (c_pretty_printer): Derive from pretty_printer.
8494 (pp_base): Remove.
8495 (pp_c_base): Likewise. Adjust users.
8496 * c-pretty-print.c (pp_c_maybe_whitespace): Adjust.
8497 (pp_c_whitespace): Do not call pp_base.
8498 (pp_c_left_paren): Likewise.
8499 (pp_c_right_paren): Likewise.
8500 (pp_c_left_brace): Likewise.
8501 (pp_c_right_brace): Likewise.
8502 (pp_c_left_bracket): Likewise.
8503 (pp_c_right_bracket): Likewise.
8504 (pp_c_dot): Likewise.
8505 (pp_c_ampersand): Likewise.
8506 (pp_c_star): Likewise.
8507 (pp_c_arrow): Likewise.
8508 (pp_c_semicolon): Likewise.
8509 (pp_c_complement): Likewise.
8510 (pp_c_exclamation): Likewise.
8511 (pp_c_direct_declarator): Likewise.
8512 (pp_c_ws_string): Likewise.
8513 (pp_c_identifier): Likewise.
8514 (pp_c_statement): Likewise.
8515 (print_c_tree): Likewise.
8516
8517 2013-08-04 Ed Smith-Rowland <3dw4rd@verizon.net>
8518
8519 PR c++/58072
8520 * c-common.c (c_parse_error): Catch user-defined literal tokens and
8521 provide useful error strings.
8522
8523 2013-08-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
8524
8525 * c-ada-spec.c (pp_ada_tree_identifier): Use specialized pretty
8526 printer functions instead of pp_string or operators and punctuators.
8527 (dump_generic_ada_node): Likewise.
8528 * c-pretty-print.c (pp_c_type_specifier): Likewise.
8529 (pp_c_relational_expression): Likewise.
8530 (pp_c_logical_or_expression): Likewise.
8531
8532 2013-08-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
8533
8534 * c-ada-spec.c (print_ada_macros): Use specialized pretty printer
8535 functions instead of pp_character.
8536 (pp_ada_tree_identifier): Likewise.
8537 (dump_ada_double_name): Likewise.
8538 (dump_ada_function_declaration): Likewise.
8539 (dump_ada_array_domains): Likewise.
8540 (dump_template_types): Likewise.
8541 (dump_generic_ada_node): Likewise.
8542 (print_ada_declaration): Likewise.
8543 (print_ada_struct_decl): Likewise.
8544 * c-pretty-print.c (pp_c_integer_constant): Likewise.
8545
8546 2013-07-23 Tom Tromey <tromey@redhat.com>
8547
8548 * c-common.h (enum rid) <RID_GENERIC>: New constant.
8549 * c-common.c (c_common_reswords): Add _Generic.
8550
8551 2013-07-21 OndÅ\99ej Bílka <neleai@seznam.cz>
8552
8553 * c-common.c: Fix typos.
8554 * c-common.h: Likewise.
8555
8556 2013-07-13 Lubos Lunak <l.lunak@suse.cz>
8557
8558 PR c++/55203
8559 * c-common.c (c_common_attribute_table): Add warn_unused.
8560 (handle_warn_unused_attribute): New.
8561
8562 2013-07-10 Jakub Jelinek <jakub@redhat.com>
8563
8564 * c-ppoutput.c (scan_translation_unit): Call account_for_newlines
8565 for all CPP_TOKEN_FLD_STR tokens, not just CPP_COMMENT.
8566
8567 2013-07-10 Paolo Carlini <paolo.carlini@oracle.com>
8568
8569 PR c++/57869
8570 * c.opt: Add Wconditionally-supported.
8571
8572 2013-07-08 Graham Stott <graham.stott@btinternet.com>
8573
8574 * array-notation-common.c (length_mismatch_in_expr_p): Delete
8575 unused variables l_length and l_node.
8576
8577 2013-07-04 Joern Rennecke <joern.rennecke@embecosm.com>
8578
8579 PR c/57821
8580 * c-common.c (complete_array_type): Delay folding first index
8581 like other indices. When folding, check for index overflow.
8582
8583 2013-06-27 Marc Glisse <marc.glisse@inria.fr>
8584
8585 PR c++/57509
8586 * c-common.h (c_build_vec_perm_expr): New complain argument.
8587 * c-common.c (c_build_vec_perm_expr): Likewise.
8588 Use save_expr also in C++.
8589
8590 2013-06-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
8591
8592 * c-common.c (c_common_nodes_and_builtins): Use cxx11 in lieu of cxx0x.
8593 * c-cppbuiltin.c (c_cpp_builtins): Likewise.
8594 * c-opts.c (c_common_post_options): Likewise.
8595
8596 2013-06-21 Balaji V. Iyer <balaji.v.iyer@intel.com>
8597
8598 * array-notation-common.c (length_mismatch_in_expr): Changed the
8599 parameter type's from a dynamic array to a vec_tree. Also removed
8600 the size parameters.
8601 * c-common.h (length_mismatch_in_expr_p): Fixed prototype's as per
8602 the change above.
8603
8604 2013-06-21 Balaji V. Iyer <balaji.v.iyer@intel.com>
8605
8606 * c-common.h (struct cilkplus_an_parts): New structure.
8607 (struct cilkplus_an_loop_parts): Likewise.
8608 (cilkplus_extract_an_triplets): New prototype.
8609 (fix_sec_implicit_args): Likewise.
8610 * array-notation-common.c (cilkplus_extract_an_triplets): New function.
8611 (fix_sec_implicit_args): Likewise.
8612
8613 2013-06-20 Balaji V. Iyer <balaji.v.iyer@intel.com>
8614
8615 * array-notation-common.c (find_inv_trees): Removed an unwanted
8616 typecasting.
8617 * c-common.h (struct inv_list::additional_tcodes): Changed type from
8618 enum rid to enum tree_code.
8619
8620 2013-06-11 Jan Hubicka <jh@suse.cz>
8621
8622 * c-common.c (handle_alias_ifunc_attribute): Do not set
8623 DECL_EXTERNAL for weakref variables.
8624 * c-pragma.c (handle_pragma_weak): Make sure aliases
8625 are not declared as external.
8626
8627 2013-06-07 Balaji V. Iyer <balaji.v.iyer@intel.com>
8628
8629 * array-notation-common.c (length_mismatch_in_expr_p): Moved this
8630 function from c/c-array-notation.c.
8631 (is_cilkplus_reduce_builtin): Likewise.
8632 (find_rank): Likewise.
8633 (extract_array_notation_exprs): Likewise.
8634 (replace_array_notations): Likewise.
8635 (find_inv_trees): Likewise.
8636 (replace_inv_trees): Likewise.
8637 (contains_array_notation_expr): Likewise.
8638 (find_correct_array_notation_type): Likewise.
8639 * c-common.h (struct inv_list): Moved this struct from the file
8640 c/c-array-notation.c and added a new field called additional tcodes.
8641 (length_mismatch_in_expr_p): New prototype.
8642 (is_cilkplus_reduce_builtin): Likewise.
8643 (find_rank): Likewise.
8644 (extract_array_notation_exprs): Likewise.
8645 (replace_array_notation): Likewise.
8646 (find_inv_trees): Likewise.
8647 (replace_inv_trees): Likewise.
8648 (find_correct_array_notation_type): Likewise.
8649
8650 2013-05-28 Balaji V. Iyer <balaji.v.iyer@intel.com>
8651
8652 * c-common.c (c_define_builtins): When cilkplus is enabled, the
8653 function array_notation_init_builtins is called.
8654 (c_common_init_ts): Added ARRAY_NOTATION_REF as typed.
8655 * c-common.def (ARRAY_NOTATION_REF): New tree.
8656 * c-common.h (build_array_notation_expr): New function declaration.
8657 (build_array_notation_ref): Likewise.
8658 (extract_sec_implicit_index_arg): New extern declaration.
8659 (is_sec_implicit_index_fn): Likewise.
8660 (ARRAY_NOTATION_CHECK): New define.
8661 (ARRAY_NOTATION_ARRAY): Likewise.
8662 (ARRAY_NOTATION_START): Likewise.
8663 (ARRAY_NOTATION_LENGTH): Likewise.
8664 (ARRAY_NOTATION_STRIDE): Likewise.
8665 * c-pretty-print.c (pp_c_postifix_expression): Added a new case for
8666 ARRAY_NOTATION_REF.
8667 (pp_c_expression): Likewise.
8668 * c.opt (flag_enable_cilkplus): New flag.
8669 * array-notation-common.c: New file.
8670
8671 2013-05-14 Jakub Jelinek <jakub@redhat.com>
8672
8673 PR c++/57274
8674 * c-common.c (verify_tree): Don't recurse into SIZEOF_EXPR.
8675
8676 2013-05-10 Marc Glisse <marc.glisse@inria.fr>
8677
8678 * c-common.c (vector_types_convertible_p): No TYPE_PRECISION for
8679 vectors.
8680
8681 2013-05-07 Han Shen <shenhan@google.com>
8682
8683 * c-cppbuiltin.c (c_cpp_builtins): Added "__SSP_STRONG__=3".
8684
8685 2013-04-29 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
8686
8687 * c-common.c (check_user_alignment): Emit error for negative values.
8688
8689 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
8690
8691 * c-opts.c (set_std_cxx11): Use CLK_CXX1Y and CLK_GNUCXX1Y.
8692
8693 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
8694
8695 * c-cppbuiltin.c (c_cpp_builtins): Do not define
8696 __GXX_EXPERIMENTAL_CXX1Y__.
8697
8698 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
8699 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
8700
8701 * c.opt ([Wpointer-arith]): Enabled by -Wpedantic, as documented.
8702 * c-common.c (pointer_int_sum): Change -Wpointer-arith pedwarns
8703 to simply use OPT_Wpointer_arith.
8704 (c_sizeof_or_alignof_type): Likewise.
8705
8706 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
8707
8708 * c-cppbuiltin.c (c_cpp_builtins): Define __GXX_EXPERIMENTAL_CXX1Y__.
8709
8710 2013-04-12 Jakub Jelinek <jakub@redhat.com>
8711
8712 * c-format.c (gcc_diag_char_table, gcc_tdiag_char_table,
8713 gcc_cdiag_char_table, gcc_cxxdiag_char_table): Add %r and %R format
8714 specifiers.
8715
8716 2013-04-07 Steven Bosscher <steven@gcc.gnu.org>
8717
8718 * c-pragma.c (add_to_renaming_pragma_list): Fix leading comment.
8719
8720 2013-04-03 Paolo Carlini <paolo.carlini@oracle.com>
8721
8722 * c-common.c (pointer_int_sum): Remove dead code.
8723
8724 2013-03-09 Richard Sandiford <rdsandiford@googlemail.com>
8725
8726 PR middle-end/56524
8727 * c-common.c (handle_optimize_attribute): Don't call
8728 save_optabs_if_changed.
8729
8730 2013-03-05 Jakub Jelinek <jakub@redhat.com>
8731
8732 PR middle-end/56461
8733 * c-pch.c (pch_init): Free target_validity at the end.
8734
8735 2013-03-04 Jakub Jelinek <jakub@redhat.com>
8736
8737 * c-pretty-print.c (pp_c_pretty_printer_init): Clear pp->flags.
8738
8739 2013-02-28 Konstantin Serebryany <konstantin.s.serebryany@gmail.com>
8740 Jakub Jelinek <jakub@redhat.com>
8741
8742 PR sanitizer/56454
8743 * c-common.c (handle_no_sanitize_address_attribute): New function.
8744 (c_common_attribute_table): Add no_sanitize_address attribute.
8745 (handle_no_address_safety_analysis_attribute): Add
8746 no_sanitize_address attribute, not no_address_safety_analysis
8747 attribute.
8748
8749 2013-02-18 Aldy Hernandez <aldyh@redhat.com>
8750
8751 PR target/52555
8752 * c-common.c (handle_optimize_attribute): Call
8753 save_optabs_if_changed.
8754
8755 2013-02-18 Jakub Jelinek <jakub@redhat.com>
8756 Steven Bosscher <steven@gcc.gnu.org>
8757
8758 PR pch/54117
8759 * c-opts.c (c_common_post_options): If debug info is enabled
8760 and non-dwarf*, refuse to load PCH files and when writing PCH
8761 file warn.
8762
8763 2013-02-05 Jakub Jelinek <jakub@redhat.com>
8764
8765 PR middle-end/56167
8766 * c-common.c (handle_error_attribute): Fix condition.
8767
8768 2013-01-30 Jakub Jelinek <jakub@redhat.com>
8769
8770 PR c++/55742
8771 * c-common.c (handle_target_attribute): Revert 2012-12-26 change.
8772
8773 2013-01-18 Jason Merrill <jason@redhat.com>
8774
8775 PR target/54908
8776 * c.opt (-fextern-tls-init): New.
8777 * c-opts.c (c_common_post_options): Handle it.
8778
8779 2013-01-09 Jakub Jelinek <jakub@redhat.com>
8780
8781 PR c/48418
8782 * c-common.c (c_fully_fold_internal): Warn for LSHIFT_EXPR and
8783 RSHIFT_EXPR, if orig_op1 isn't INTEGER_CST, op1 is INTEGER_CST
8784 and is either negative or bigger or equal to type precision
8785 of the first operand.
8786
8787 2012-12-03 Marek Polacek <polacek@redhat.com>
8788
8789 PR c/55570
8790 * c-common.c (check_user_alignment): Swap order of tests,
8791 check TREE_CODE first.
8792
8793 2012-11-29 Ed Smith-Rowland <3dw4rd@verizon.net>
8794
8795 PR c++/52654
8796 * c-common.h (overflow_type): New enum.
8797 (build_userdef_literal): Add overflow_type argument.
8798 (tree_userdef_literal): Add overflow_type.
8799 (USERDEF_LITERAL_OVERFLOW): New access macro.
8800 * c-common.c (build_userdef_literal): Add overflow_type
8801 argument.
8802 * c-lex.c (c_lex_with_flags): Add overflow_type to
8803 build_userdef_literal calls.
8804 (interpret_integer, interpret_float): Add overflow_type argument.
8805
8806 2012-11-28 Richard Biener <rguenther@suse.de>
8807
8808 PR c/35634
8809 * c-gimplify.c (c_gimplify_expr): Gimplify self-modify expressions
8810 here and use a type with proper overflow behavior for types that would
8811 need to be promoted for the arithmetic.
8812
8813 2012-11-23 Jakub Jelinek <jakub@redhat.com>
8814
8815 PR sanitizer/55435
8816 * c-common.c (handle_no_address_safety_analysis_attribute): New
8817 function.
8818 (c_common_attribute_table): Add no_address_safety_analysis.
8819
8820 2012-11-16 Simon Baldwin <simonb@google.com>
8821
8822 * c.opt: Add f[no-]canonical-system-headers.
8823 * c-opts.c (c_common_handle_option): Handle
8824 OPT_fcanonical_system_headers.
8825
8826 2012-11-09 Ed Smith-Rowland <3dw4rd@verizon.net>
8827
8828 PR c++/54413
8829 * c-opts.c (c_common_handle_option): Set new flags.
8830 * c.opt: Describe new flags.
8831
8832 2012-11-09 Jason Merrill <jason@redhat.com>
8833
8834 * c.opt (Wabi-tag): New.
8835
8836 2012-11-09 Andi Kleen <ak@linux.intel.com>
8837
8838 PR 55139
8839 * c-common.c (get_atomic_generic_size): Mask with
8840 MEMMODEL_MASK
8841
8842 2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
8843
8844 PR c/53063
8845 * c.opt (Wformat): Make it Alias Wformat=1.
8846 (Wformat-contains-nul,Wformat-extra-args,Wformat-nonliteral,
8847 Wformat-security,Wformat-y2k,Wformat-zero-length): Use
8848 LangEnabledBy.
8849 (Wformat=): RejectNegative. Use LangEnabledBy.
8850 (Wnonnull): Use LangEnabledBy.
8851 * c-opts.c (c_common_handle_option): Do not handle Wformat here.
8852 * c-format.c (set_Wformat): Delete.
8853 (decode_format_attr): Replace OPT_Wformat with OPT_Wformat_.
8854 (maybe_read_dollar_number): Likewise.
8855 (avoid_dollar_number): Likewise.
8856 (finish_dollar_format_checking): Likewise.
8857 (check_format_info): Likewise.
8858 (check_format_info_main): Likewise.
8859 (check_format_types): Likewise.
8860 (format_type_warning): Likewise.
8861 * c-common.c (int): Likewise.
8862 (check_function_sentinel): Likewise.
8863 * c-common.h (warn_format,set_Wformat): Do not declare here.
8864
8865 2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
8866
8867 PR c/53063
8868 * c.opt(Warray-bounds,Wdelete-non-virtual-dtor,Wenum-compare,
8869 Wmain,Woverlength-strings, Wunknown-pragmas,Wunused-macros):
8870 Use LangEnabledBy.
8871 (Wswitch,Wswitch-default,Wswitch-enum): Likewise. Move here from
8872 common.opt.
8873 (Wvariadic-macros): Init(1).
8874 * c-opts.c (c_common_handle_option): Do not handle them
8875 explicitly.
8876 (c_common_post_options): Likewise.
8877 (sanitize_cpp_opts): warn_unused_macros is now
8878 cpp_warn_unused_macros.
8879 (push_command_line_include): Likewise.
8880 * c-common.c (warn_unknown_pragmas): Do not define.
8881 * c-common.h (warn_unknown_pragmas): Do not declare.
8882
8883 2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
8884
8885 PR c/51294
8886 * c-common.c (conversion_warning): Handle conditional expressions.
8887
8888 2012-10-29 Jonathan Wakely <jwakely.gcc@gmail.com>
8889
8890 PR c++/54930
8891 * c.opt (Wreturn_local_addr): Define new option.
8892
8893 2012-10-25 Jason Merrill <jason@redhat.com>
8894
8895 * c.opt (Wvirtual-move-assign): New.
8896
8897 * c.opt (Winherited-variadic-ctor): New.
8898
8899 2012-10-25 Marc Glisse <marc.glisse@inria.fr>
8900
8901 PR c++/54427
8902 * c-common.c (scalar_to_vector): Handle VEC_COND_EXPR.
8903
8904 2012-10-23 Joseph Myers <joseph@codesourcery.com>
8905
8906 * c-common.h (pch_cpp_save_state): Declare.
8907 * c-target.def (c_preinclude): New hook.
8908 * c-opts.c (done_preinclude): New.
8909 (push_command_line_include): Handle default preincluded header.
8910 (cb_file_change): Call pch_cpp_save_state when calling
8911 push_command_line_include.
8912 * c-pch.c (pch_ready_to_save_cpp_state, pch_cpp_state_saved)
8913 (pch_cpp_save_state): New.
8914 (pch_init): Call pch_cpp_save_state conditionally, instead of
8915 calling cpp_save_state.
8916
8917 2012-10-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
8918
8919 PR c/53063
8920 PR c/40989
8921 * c.opt (Waddress,Wchar-subscripts,Wsign-conversion,Wimplicit,
8922 Wimplicit-function-declaration,Wimplicit-int,Wsizeof-pointer-memaccess,
8923 Wnarrowing,Wparentheses,Wpointer-sign,Wreturn-type,Wsequence-point,
8924 Wsign-compare,Wuninitialized,Wmaybe-uninitialized,Wunused,
8925 Wvolatile-register-var): Add LangEnabledBy or EnabledBy.
8926 * c-opts.c (c_common_handle_option): Remove explicit handling from
8927 here.
8928 (c_common_post_options): Likewise.
8929
8930 2012-10-18 Eric Botcazou <ebotcazou@adacore.com>
8931
8932 * c-ada-spec.c (LOCATION_COL): Delete.
8933 (compare_location): New function.
8934 (compare_node): Use it.
8935 (compare_comment): Likewise.
8936
8937 2012-10-16 Manuel López-Ibáñez <manu@gcc.gnu.org>
8938
8939 PR c/53063
8940 PR c/40989
8941 * c.opt (Wstrict-aliasing=,Wstrict-overflow=): Use LangEnabledBy.
8942 * c-opts.c (c_common_handle_option): Do not set them here. Add
8943 comment.
8944 (c_common_post_options): Likewise.
8945
8946 2012-10-16 Eric Botcazou <ebotcazou@adacore.com>
8947
8948 * c-ada-spec.c (ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX): Define.
8949 (dump_generic_ada_node) <INTEGER_CST>: Deal with sizetype specially.
8950 Remove POINTER_TYPE handling, add large unsigned handling and use
8951 ADA_HOST_WIDE_INT_PRINT_DOUBLE_HEX for big numbers.
8952
8953 2012-10-12 Jakub Jelinek <jakub@redhat.com>
8954
8955 PR c/54381
8956 * c-common.h (sizeof_pointer_memaccess_warning): Adjust prototype.
8957 * c-common.c (sizeof_pointer_memaccess_warning): Take array of 3
8958 locs and array of 3 trees instead of just single loc and single
8959 sizeof_arg tree. Handle __builtin___*_chk builtins too, and
8960 also stpncpy, bcopy, bcmp, bzero, snprintf and vsnprintf builtins.
8961 For *cmp* builtins that take two sources strings report warnings
8962 about first and second source, not about destination and source.
8963
8964 2012-10-12 Marc Glisse <marc.glisse@inria.fr>
8965
8966 PR c++/53055
8967 * c-common.h (enum ref_operator) [RO_ARROW_STAR]: New.
8968
8969 2012-10-11 Eric Botcazou <ebotcazou@adacore.com>
8970
8971 * c-ada-spec.c (dump_ada_template): Bail out for template declarations
8972 declaring something coming from another file.
8973
8974 2012-10-10 Arnaud Charlet <charlet@adacore.com>
8975
8976 PR ada/54845
8977 * c-ada-spec.c (print_ada_struct_decl): Increase buf size.
8978
8979 2012-10-09 Paolo Carlini <paolo.carlini@oracle.com>
8980
8981 PR c++/54194
8982 * c-common.c (warn_about_parentheses): Add location_t parameter;
8983 use EXPR_LOC_OR_LOC.
8984 * c-common.h: Update declaration.
8985
8986 2012-10-09 Marc Glisse <marc.glisse@inria.fr>
8987
8988 PR c++/54427
8989 * c-common.c (scalar_to_vector): Moved from c-typeck.c. Support
8990 more operations. Make error messages optional.
8991 * c-common.h (enum stv_conv): Moved from c-typeck.c.
8992 (scalar_to_vector): Declare.
8993
8994 2012-10-08 Jason Merrill <jason@redhat.com>
8995
8996 * c-common.c (c_common_reswords): Add thread_local.
8997
8998 2012-10-08 Dodji Seketeli <dodji@redhat.com>
8999
9000 PR c++/53528 C++11 attribute support
9001 * c-common.h (bitfield_p, cxx_fundamental_alignment_p): Declare
9002 new functions.
9003 * c-common.c (check_cxx_fundamental_alignment_constraints): New
9004 static function.
9005 (handle_aligned_attribute): In choose strictest alignment
9006 among many. Use new check_cxx_fundamental_alignment_constraints.
9007 (handle_transparent_union_attribute): In c++11 attribute syntax,
9008 don't look through typedefs.
9009
9010 2012-10-04 Arnaud Charlet <charlet@adacore.com>
9011
9012 * c-ada-spec.c (print_ada_declaration): Remove handling of TDF_RAW.
9013 * c.opt (-fdump-ada-spec, -fdump-ada-spec-slim): Move switch definition
9014 out of dumpfile.h.
9015
9016 2012-09-25 Dehao Chen <dehao@google.com>
9017
9018 PR middle-end/54645
9019 * c-pch.c (c_common_read_pch): Rebuild the location_adhoc_data
9020 map when read in the pch.
9021
9022 2012-09-18 Arnaud Charlet <charlet@adacore.com>
9023
9024 * c-ada-spec.c: Style fixes.
9025
9026 2012-09-18 Thomas Quinot <quinot@adacore.com>
9027
9028 * c.opt (-fada-spec-parent): Define new command line switch.
9029 * c-ada-spec.c (get_ada_package): When -fada-spec-parent
9030 is specified, generate binding spec as a child of the specified unit.
9031
9032 2012-09-13 Paolo Carlini <paolo.carlini@oracle.com>
9033 Manuel López-Ibáñez <manu@gcc.gnu.org>
9034
9035 PR c++/53210
9036 * c.opt ([Winit-self]): Enabled by -Wall in C++.
9037
9038 2012-08-23 Arnaud Charlet <charlet@adacore.com>
9039
9040 * c-ada-spec.c (dump_generic_ada_node): Fix handling of name_only
9041 for pointers, and add missing Convention C pragma.
9042 (print_ada_struct_decl): Add missing aliased keyword.
9043 (dump_ads): Add pragma Ada_2005 and Style_Checks (Off).
9044
9045 2012-08-17 Jakub Jelinek <jakub@redhat.com>
9046
9047 * c-common.c (sizeof_pointer_memaccess_warning): New function.
9048 * c.opt (-Wsizeof-pointer-memaccess): Add new option.
9049 * c-opts.c (c_common_handle_option): Enable it for -Wall.
9050 * c-common.h (sizeof_pointer_memaccess_warning): Add prototype.
9051 * c-common.def (SIZEOF_EXPR): Moved here from cp-tree.def.
9052
9053 2012-08-10 Richard Guenther <rguenther@suse.de>
9054
9055 * c-pretty-print.c (pp_c_expression): Handle anonymous SSA names.
9056
9057 2012-08-07 Steven Bosscher <steven@gcc.gnu.org>
9058
9059 * c-pretty-print.c (pp_c_function_definition): Use pp_newline_and_flush
9060 instead of separate pp_newline and pp_flush.
9061 (print_c_tree): Likewise.
9062
9063 2012-07-26 Richard Henderson <rth@redhat.com>
9064
9065 * c-common.c (handle_hot_attribute): Allow labels.
9066 (handle_cold_attribute): Likewise.
9067
9068 2012-07-20 Jakub Jelinek <jakub@redhat.com>
9069
9070 PR c++/28656
9071 * c-common.c (check_function_nonnull): Handle multiple nonnull
9072 attributes properly.
9073
9074 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
9075
9076 * c-gimplify.c: Include dumpfile.h instead of tree-dump.h.
9077 * c-ada-spec.c: Likewise.
9078 * c-dump.c (dump_stmt): Move to cp/dump.c, the only user.
9079
9080 2012-07-14 Steven Bosscher <steven@gcc.gnu.org>
9081
9082 * c-pch.c (CHECK_NO_ASM_OUT_DURING_PCH): Do not define.
9083 Remove code conditional on it.
9084
9085 2012-07-11 Steven Bosscher <steven@gcc.gnu.org>
9086
9087 * c-gimplify.c: Do not include basic-block.h.
9088 * c-common.c: Do not include linfuncs.h.
9089
9090 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
9091
9092 * c-common.h: Include tree.h.
9093
9094 2012-07-02 Jason Merrill <jason@redhat.com>
9095
9096 PR c++/53524
9097 * c-common.c (get_priority): Call default_conversion.
9098
9099 2012-07-01 Uros Bizjak <ubizjak@gmail.com>
9100
9101 * c-pch.c (c_common_write_pch): Remove unused variables.
9102
9103 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
9104
9105 * cppspec.c: Moved from gcc/ to here.
9106
9107 2012-06-27 Kai Tietz <ktietz@redhat.com>
9108
9109 PR preprocessor/37215
9110 * c-ppoutput.c (preprocess_file): Check for nonempty buffer.
9111
9112 2012-06-21 Steven Bosscher <steven@gcc.gnu.org>
9113
9114 * c-common.h (c_common_print_pch_checksum): Remove.
9115 * c-pch.c: Do not include output.h.
9116 (CHECK_NO_ASM_OUT_DURING_PCH): Define and add FIXME.
9117 (asm_out_file): Define iff CHECK_NO_ASM_OUT_DURING_PCH isdefined.
9118 (asm_file_startpos): Define iff CHECK_NO_ASM_OUT_DURING_PCH is defined.
9119 (struct c_pch_header): Remove.
9120 (get_ident): Update gpch version.
9121 (pch_init): Do not print executable_checksum to asm_out_file.
9122 Do not fail if there is no asm_out_file to read back from. Set
9123 asm_file_startpos only if CHECK_NO_ASM_OUT_DURING_PCH is defined.
9124 (c_common_write_pch): Verify that nothing was written to asm_out_file
9125 since pch_init was called. Do not write a c_pch_header, and do not
9126 copy from asm_out_file to the PCH.
9127 (c_common_read_pch): Do not read a c_pch_header, and do not restore
9128 the content of asm_out_file from the PCH.
9129 (c_common_print_pch_checksum): Remove.
9130 * c-opts.c (c_common_init): Print out executable_checksum directly.
9131
9132 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
9133
9134 * c-target.def (objc_declare_unresolved_class_reference,
9135 objc_declare_class_definition): Add new hooks.
9136
9137 2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
9138
9139 * c-lex.c: Do not include output.h.
9140 (cb_ident): Try to put out .ident with targetm.asm_out.output_ident.
9141 Remove uses of ASM_OUTPUT_IDENT.
9142
9143 2012-06-15 Marc Glisse <marc.glisse@inria.fr>
9144
9145 PR c++/51033
9146 * c-common.h (c_build_vec_perm_expr): Move decl here.
9147 * c-common.c (c_build_vec_perm_expr): Move definition
9148 here.
9149
9150 2012-06-06 Steven Bosscher <steven@gcc.gnu.org>
9151
9152 * c.opt (fconserve-space): Turn into a no-op.
9153
9154 2012-06-04 Sterling Augustine <saugustine@google.com>
9155
9156 * c-pretty-print.h (pp_c_flag_gnu_v3): New enumerator.
9157 * c-pretty-print.c (pp_c_specifier_qualifier_list): Check it at
9158 both the start and end of the function.
9159
9160 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
9161
9162 * c-common.c: Do not include output.h.
9163 * c-pragma.c: Likewise.
9164
9165 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
9166
9167 * error.c (dump_decl): Check pp_c_flag_gnu_v3.
9168 (decl_as_dwarf_string, lang_decl_dwarf_name): New functions.
9169 (lang_decl_name): Handle namespace decls.
9170
9171 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
9172
9173 * c-ada-spec.c: Do not include output.h.
9174 * c-semantics.c: Likewise.
9175
9176 2012-05-29 Joseph Myers <joseph@codesourcery.com>
9177
9178 * c-common.c: Fix typo.
9179
9180 2012-05-29 Michael Matz <matz@suse.de>
9181
9182 * c-common.h (c_expand_decl): Remove prototype.
9183
9184 2012-05-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
9185
9186 * c.opt (Wmissing-braces): Use LangEnabledBy(C ObjC,Wall).
9187 * c-opts.c (c_common_handle_option): Remove code handling
9188 warn_missing_braces.
9189
9190 2012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
9191
9192 PR c++/25137
9193 * c-opts.c (c_common_handle_option): For C++ -Wall doesn't enable
9194 -Wmissing_braces.
9195
9196 2012-05-22 Dodji Seketeli <dodji@redhat.com>
9197
9198 PR c++/53322
9199 * c.opt (Wunused-local-typedefs): Use EnabledBy(Wunused).
9200
9201 2012-05-17 Manuel López-Ibáñez <manu@gcc.gnu.org>
9202
9203 * c.opt (--pedantic-errors,-pedantic-errors): Do not handle here.
9204 * c-opts.c (c_common_handle_option): Do not handle explicitly
9205 Wreturn-type, Wwrite-strings, warn_ecpp, and -pedantic-errors.
9206
9207 2012-05-16 Dodji Seketeli <dodji@redhat.com>
9208
9209 PR preprocessor/7263
9210 * c-lex.c (c_lex_with_flags): Pass a virtual location to the call
9211 to cpp_classify_number. For diagnostics, use the precise location
9212 instead of the global input_location.
9213
9214 2012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
9215
9216 PR c++/11856
9217 * c-common.c (shorten_compare): Check c_inhibit_evaluation_warnings.
9218
9219 2012-05-14 Bernd Schmidt <bernds@codesourcery.com>
9220
9221 * c-common.c (DEF_ATTR_STRING): Define and undefine as necessary.
9222
9223 2012-05-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
9224
9225 PR 53063
9226 * c.opt (Wc++0X-compat,Wdelete-non-virtual-dtor,Wjump-misses-init,
9227 Wreorder): Use LangEnabledBy.
9228 * c-opts.c (c_common_handle_option): Do not enable them
9229 explicitly. Call lang-specific generated functions.
9230 (c_common_post_options): Do not set them here.
9231
9232 2012-05-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
9233
9234 * c.opt (Wclobbered,Wempty-body,Wignored-qualifiers,
9235 Wmissing-field-initializers,Wmissing-parameter-type,
9236 Wold-style-declaration,Woverride-init): Use EnabledBy.
9237 * c-opts.c (c_common_post_options): Do not set here explicitly.
9238
9239 2012-05-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
9240
9241 PR 53063
9242 * c-opts.c (c_common_handle_option): Use handle_generated_option
9243 to enable sub-options.
9244
9245 2012-05-10 Paolo Carlini <paolo.carlini@oracle.com>
9246
9247 PR c++/53158
9248 * c-common.c (warnings_for_convert_and_check): Use warning_at.
9249
9250 2012-05-10 Richard Guenther <rguenther@suse.de>
9251
9252 * c-common.c (c_sizeof_or_alignof_type): Remove assert and
9253 adjust commentary about TYPE_IS_SIZETYPE types.
9254
9255 2012-05-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
9256
9257 PR c++/53261
9258 * c-common.c (warn_logical_operator): Check that argument of
9259 integer_zerop is not NULL.
9260
9261 2012-05-05 Manuel López-Ibáñez <manu@gcc.gnu.org>
9262
9263 PR c/43772
9264 * c-common.c (warn_logical_operator): Do not warn if either side
9265 is already true or false.
9266
9267 2012-05-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
9268
9269 PR c/51712
9270 * c-common.c (expr_original_type): New.
9271 (shorten_compare): Do not warn for enumeration types.
9272
9273 2012-05-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
9274
9275 * c.opt (fpermissive): Add Var(flag_permissive).
9276
9277 2012-04-30 Marc Glisse <marc.glisse@inria.fr>
9278
9279 PR c++/51033
9280 * c-common.c (convert_vector_to_pointer_for_subscript): New function.
9281 * c-common.h (convert_vector_to_pointer_for_subscript): Declare it.
9282
9283 2012-04-30 Dodji Seketeli <dodji@redhat.com>
9284
9285 Add -Wvarargs option
9286 * c.opt (Wvarargs): Define new option.
9287
9288 2012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
9289
9290 * c-common.c (check_function_arguments): Replace
9291 Wmissing-format-attribute with Wsuggest-attribute=format.
9292
9293 2012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
9294
9295 * c.opt (Wsuggest-attribute=format): New. Alias of
9296 Wmissing-format-attribute.
9297 * c-format.c (decode_format_type): Replace
9298 Wmissing-format-attribute with Wsuggest-attribute=format.
9299 (check_function_format): Likewise.
9300
9301 2012-04-27 Ollie Wild <aaw@google.com>
9302
9303 * c-common.c: Add CPP_W_LITERAL_SUFFIX mapping.
9304 * c-opts.c (c_common_handle_option): Handle OPT_Wliteral_suffix.
9305 * c.opt: Add Wliteral-suffix.
9306
9307 2012-04-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
9308
9309 PR c/44774
9310 * c.opt (Wpedantic): New.
9311 (pedantic): Alias Wpedantic.
9312 * c-opts.c (c_common_handle_option): Replace -pedantic with -Wpedantic.
9313 (c_common_post_options): Likewise.
9314 (sanitize_cpp_opts): Likewise.
9315 * c-lex.c (interpret_float): Likewise.
9316 * c-format.c (check_format_types): Likewise.
9317 * c-common.c (pointer_int_sum): Likewise.
9318 (c_sizeof_or_alignof_type): Likewise.
9319 (c_add_case_label): Likewise.
9320 (c_do_switch_warnings): Likewise.
9321 * c-pragma.c (handle_pragma_float_const_decimal64): Likewise.
9322
9323 2012-04-15 Jason Merrill <jason@redhat.com>
9324
9325 PR c++/52818
9326 * c-format.c (CPLUSPLUS_STD_VER): C++11 inherits from C99.
9327 (C_STD_NAME): Distinguish between C++98 and C++11.
9328
9329 2012-04-11 Eric Botcazou <ebotcazou@adacore.com>
9330
9331 PR target/52624
9332 * c-common.h (uint16_type_node): Rename into...
9333 (c_uint16_type_node): ...this.
9334 * c-common.c (c_common_nodes_and_builtins): Adjust for above renaming.
9335 * c-cppbuiltin.c (builtin_define_stdint_macros): Likewise.
9336
9337 2012-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org>
9338
9339 * c-common.c (warn_if_unused_value): Move definition to here.
9340 * c-common.h (warn_if_unused_value): Move declaration to here.
9341
9342 2012-03-23 William Bader <williambader@hotmail.com>
9343
9344 * c-lex.c (c_lex_with_flags): Avoid declarations after stmts.
9345
9346 2012-03-20 Jason Merrill <jason@redhat.com>
9347
9348 * c-common.h (enum cxx_dialect): Add cxx1y.
9349 * c-common.c (c_common_nodes_and_builtins): Use >= for cxx_dialect
9350 test.
9351 * c-cppbuiltin.c (c_cpp_builtins): Likewise.
9352 * c-opts.c (c_common_post_options): Likewise.
9353 (set_std_cxx1y): New.
9354 (c_common_handle_option): Call it.
9355 * c.opt (-std=c++1y, -std=gnu++1y): New flags.
9356
9357 2012-03-19 Paolo Carlini <paolo.carlini@oracle.com>
9358
9359 PR c++/14710
9360 * c.opt ([Wuseless-cast]): Add.
9361
9362 2012-03-16 Richard Guenther <rguenther@suse.de>
9363
9364 * c-pretty-print.c (pp_c_initializer_list): Adjust.
9365
9366 2012-03-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
9367
9368 PR c++/44783
9369 * c.opt (ftemplate-backtrace-limit) Add.
9370
9371 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9372
9373 * c-cppbuiltin.c (c_cpp_builtins): Remove #pragma extern_prefix
9374 handling.
9375 * c-pragma.c (handle_pragma_extern_prefix): Remove.
9376 (init_pragma): Don't register extern_prefix.
9377
9378 2012-03-12 Richard Guenther <rguenther@suse.de>
9379
9380 * c-common.c (c_common_get_narrower): Use c_common_type_for_size.
9381 (builtin_type_for_size): Likewise.
9382
9383 2012-02-13 Jakub Jelinek <jakub@redhat.com>
9384
9385 PR c++/52215
9386 * c-common.c (sync_resolve_params): Don't decide whether to convert
9387 or not based on TYPE_SIZE comparison, convert whenever arg_type
9388 is unsigned INTEGER_TYPE.
9389
9390 2012-02-06 Paolo Carlini <paolo.carlini@oracle.com>
9391
9392 PR c/52118
9393 * c.opt ([Wunused-local-typedefs]): Fix description.
9394
9395 2012-01-24 Mike Stump <mikestump@comcast.net>
9396
9397 * c-common.c (c_common_type_for_mode): Match signed/unsigned types
9398 exactly.
9399
9400 2012-01-18 Richard Guenther <rguenther@suse.de>
9401
9402 * c-opts.c (c_common_post_options): Reset LTO flags if
9403 we are about to generate a PCH.
9404
9405 2012-01-17 Paolo Carlini <paolo.carlini@oracle.com>
9406
9407 PR c++/51777
9408 * c-pretty-print.c (pp_c_integer_constant): For unsigned constants
9409 use pp_unsigned_wide_integer.
9410
9411 2012-01-10 Richard Guenther <rguenther@suse.de>
9412
9413 PR middle-end/51806
9414 * c-opts.c (c_common_handle_option): Move -Werror handling
9415 to language independent code.
9416
9417 2012-01-05 Richard Guenther <rguenther@suse.de>
9418
9419 PR middle-end/51764
9420 * c.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move here
9421 from common.opt.
9422
9423 2011-12-30 Paolo Carlini <paolo.carlini@oracle.com>
9424
9425 PR c++/51316
9426 * c-common.c (c_sizeof_or_alignof_type): In C++ allow for alignof
9427 of array types with an unknown bound.
9428
9429 2011-12-20 Joseph Myers <joseph@codesourcery.com>
9430
9431 * c-common.c (flag_isoc99): Update comment to refer to C11.
9432 (flag_isoc1x): Change to flag_isoc11.
9433 * c-common.h (flag_isoc99): Update comment to refer to C11.
9434 (flag_isoc1x): Change to flag_isoc11.
9435 * c-cppbuiltin.c (cpp_atomic_builtins): Change comment to refer to
9436 C11.
9437 * c-opts.c (set_std_c1x): Change to set_std_c11.
9438 (c_common_handle_option): Handle OPT_std_c11 and OPT_std_gnu11.
9439 Call set_std_c11.
9440 (set_std_c89, set_std_c99, set_std_c11): Use flag_isoc11.
9441 (set_std_c1): Use CLK_STDC11 and CLK_GNUC11.
9442 * c.opt (std=c1x): Change to std=c11. Document as non-draft
9443 standard.
9444 (std=c1x, std=iso9899:2011): Add as aliases of std=c11.
9445 (std=gnu1x): Change to std=gnu11. Refer to non-draft standard.
9446 (std=gnu1x): Make alias of std=gnu11.
9447
9448 2011-12-19 Jason Merrill <jason@redhat.com>
9449
9450 PR c++/51228
9451 * c-common.c (handle_transparent_union_attribute): Check the first
9452 field if the type is complete.
9453
9454 2011-12-15 Jonathan Wakely <jwakely.gcc@gmail.com>
9455
9456 PR libstdc++/51365
9457 * c-common.c (RID_IS_FINAL): Add.
9458 * c-common.h (RID_IS_FINAL): Add.
9459
9460 2011-11-30 Iain Sandoe <iains@gcc.gnu.org>
9461
9462 * c.opt (fgnu-runtime): Provide full description.
9463 (fnext-runtime): Likewise.
9464 * c-opts.c (OPT_fgnu_runtime, OPT_fnext_runtime) Remove.
9465
9466 2011-11-28 Andrew MacLeod <amacleod@redhat.com>
9467
9468 * c-cpp-builtin.c (cpp_atomic_builtins):New. Emit all atomic
9469 predefines in one place. Add LOCK_FREE predefines.
9470 (c_cpp_builtins): Move Legacy HAVE_SYNC predefines to
9471 new func.
9472
9473 2011-11-24 Andrew MacLeod <amacleod@redhat.com>
9474
9475 PR c/51256
9476 * c-common.c (get_atomic_generic_size): Check for various error
9477 conditions
9478 (resolve_overloaded_atomic_exchange,
9479 resolve_overloaded_atomic_compare_exchange,
9480 resolve_overloaded_atomic_load, resolve_overloaded_atomic_store): Return
9481 error_mark_node for error conditions.
9482
9483 2011-11-08 Richard Guenther <rguenther@suse.de>
9484
9485 PR middle-end/51010
9486 * c-pretty-print.c (pp_c_expression): Handle SSA_NAMEs.
9487
9488 2011-11-07 Richard Henderson <rth@redhat.com>
9489 Aldy Hernandez <aldyh@redhat.com>
9490 Torvald Riegel <triegel@redhat.com>
9491
9492 Merged from transactional-memory.
9493
9494 * c-common.c (handle_tm_wrap_attribute,
9495 handle_tm_attribute, ignore_attribute, parse_tm_stmt_attr): New.
9496 (struct c_common_reswords): Added __transaction* keywords.
9497 (struct c_common_attribute_table): Added transaction* and tm_regparm
9498 attributes.
9499 * c-common.h: Added RID_TRANSACTION*. Added TM_ATTR* and TM_STMT*
9500 masks.
9501 (parse_tm_stmt_attr, tm_attr_to_mask, tm_mask_to_attr,
9502 find_tm_attribute): Declare.
9503
9504 2011-11-07 Jason Merrill <jason@redhat.com>
9505
9506 PR c++/35688
9507 * c-common.c, c-common.h: Revert yesterday's changes.
9508
9509 2011-11-06 Jason Merrill <jason@redhat.com>
9510
9511 PR c++/35688
9512 * c-common.c (decl_has_visibility_attr): Split out from...
9513 (c_determine_visibility): ...here.
9514 * c-common.h: Declare it.
9515
9516 2011-11-06 Joseph Myers <joseph@codesourcery.com>
9517
9518 * c-common.c (c_common_reswords): Add _Alignas and _Alignof.
9519 (c_sizeof_or_alignof_type): Diagnose alignof applied to a function
9520 type.
9521 (check_user_alignment): New. Split out of
9522 handle_aligned_attribute. Disallow integer constants with
9523 noninteger types. Conditionally allow zero.
9524 (handle_aligned_attribute): Use check_user_alignment.
9525 * c-common.h (RID_ALIGNAS, check_user_alignment): New.
9526
9527 2011-11-06 Andrew MacLeod <amacleod@redhat.com>
9528 Richard Henderson <rth@redhat.com>
9529
9530 Merged from cxx-mem-model.
9531
9532 * c-cppbuiltin.c (c_cpp_builtins): Test both atomic and sync patterns.
9533 * c-common.c (sync_resolve_params, sync_resolve_return): Only tweak
9534 parameters that are the same type size.
9535 (get_atomic_generic_size): New. Find size of generic
9536 atomic function parameters and do typechecking.
9537 (add_atomic_size_parameter): New. Insert size into parameter list.
9538 (resolve_overloaded_atomic_exchange): Restructure __atomic_exchange to
9539 either __atomic_exchange_n or external library call.
9540 (resolve_overloaded_atomic_compare_exchange): Restructure
9541 __atomic_compare_exchange to either _n variant or external library call.
9542 (resolve_overloaded_atomic_load): Restructure __atomic_load to either
9543 __atomic_load_n or an external library call.
9544 (resolve_overloaded_atomic_store): Restructure __atomic_store to either
9545 __atomic_store_n or an external library call.
9546 (resolve_overloaded_builtin): Handle new __atomic builtins.
9547
9548 2011-11-04 Eric Botcazou <ebotcazou@adacore.com>
9549
9550 PR c++/50608
9551 * c-common.c (c_fully_fold_internal) <ADDR_EXPR>: Call fold_offsetof_1.
9552 (fold_offsetof_1): Make global. Remove STOP_REF argument and adjust.
9553 <INDIRECT_REF>: Return the argument.
9554 <ARRAY_REF>: Remove special code for negative offset.
9555 Call fold_build_pointer_plus instead of size_binop.
9556 (fold_offsetof): Remove STOP_REF argument and adjust.
9557 * c-common.h (fold_offsetof_1): Declare.
9558 (fold_offsetof): Remove STOP_REF argument.
9559
9560 2011-11-02 Paolo Carlini <paolo.carlini@oracle.com>
9561
9562 PR c++/50810
9563 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
9564 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
9565 Wnarrowing for C++0x and C++98.
9566 * c.opt ([Wnarrowing]): Update.
9567
9568 2011-11-01 Paolo Carlini <paolo.carlini@oracle.com>
9569
9570 PR c++/44277
9571 * c.opt: Add Wzero-as-null-pointer-constant.
9572
9573 2011-10-31 Jason Merrill <jason@redhat.com>
9574
9575 * c.opt (-fdeduce-init-list): Off by default.
9576
9577 PR c++/50920
9578 * c-common.h (cxx_dialect): Add cxx11 and cxx03.
9579 * c.opt: Add -std=c++11, -std=gnu++11, -std=gnu++03,
9580 and -Wc++11-compat.
9581 * c-opts.c (set_std_cxx11): Rename from set_std_cxx0x.
9582
9583 2011-10-27 Roberto Agostino Vitillo <ravitillo@lbl.gov>
9584
9585 PR c++/30066
9586 * c.opt (fvisibility-inlines-hidden): Description change.
9587
9588 2011-10-26 Ed Smith-Rowland <3dw4rd@verizon.net>
9589
9590 Implement C++11 user-defined literals.
9591 * c-common.c (build_userdef_literal): New.
9592 * c-common.def: New tree code.
9593 * c-common.h (tree_userdef_literal): New tree struct and accessors.
9594 * c-lex.c (interpret_float): Add suffix parm.
9595 (c_lex_with_flags): Build literal tokens.
9596
9597 2011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
9598
9599 PR c++/50841
9600 Revert:
9601 2011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
9602
9603 PR c++/50810
9604 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
9605 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
9606 Wnarrowing for C++0x and C++98.
9607 * c.opt ([Wnarrowing]): Update.
9608
9609 2011-10-23 Paolo Carlini <paolo.carlini@oracle.com>
9610
9611 PR c++/50810
9612 * c-opts.c (c_common_handle_option): Enable -Wnarrowing as part
9613 of -Wall; include -Wnarrowing in -Wc++0x-compat; adjust default
9614 Wnarrowing for C++0x and C++98.
9615 * c.opt ([Wnarrowing]): Update.
9616
9617 2011-10-21 Paolo Carlini <paolo.carlini@oracle.com>
9618
9619 PR c++/45385
9620 * c-common.c (conversion_warning): Remove code looking for
9621 artificial operands.
9622
9623 2011-10-18 Dodji Seketeli <dodji@redhat.com>
9624
9625 PR bootstrap/50760
9626 * c-lex.c (fe_file_change): Use LINEMAP_SYSP when
9627 !NO_IMPLICIT_EXTERN_C.
9628
9629 2011-10-17 Michael Spertus <mike_spertus@symantec.com>
9630
9631 * c-common.c (c_common_reswords): Add __bases,
9632 __direct_bases.
9633 * c-common.h: Add RID_BASES and RID_DIRECT_BASES.
9634
9635 2011-10-17 Paolo Carlini <paolo.carlini@oracle.com>
9636
9637 PR c++/50757
9638 * c.opt ([Wnonnull]): Add C++ and Objective-C++.
9639
9640 2011-10-15 Tom Tromey <tromey@redhat.com>
9641 Dodji Seketeli <dodji@redhat.com>
9642
9643 * c.opt (fdebug-cpp): New option.
9644 * c-opts.c (c_common_handle_option): Handle the option.
9645 * c-ppoutput.c (maybe_print_line_1): New static function. Takes an
9646 output stream in parameter. Factorized from ...
9647 (maybe_print_line): ... this. Dump location debug information when
9648 -fdebug-cpp is in effect.
9649 (print_line_1): New static function. Takes an output stream in
9650 parameter. Factorized from ...
9651 (print_line): ... here. Dump location information when -fdebug-cpp
9652 is in effect.
9653 (scan_translation_unit): Dump location information when
9654 -fdebug-cpp is in effect.
9655
9656 2011-10-15 Tom Tromey <tromey@redhat.com>
9657 Dodji Seketeli <dodji@redhat.com>
9658
9659 * c.opt (ftrack-macro-expansion): New option. Handle it with and
9660 without argument.
9661 * c-opts.c (c_common_handle_option)<case
9662 OPT_ftrack_macro_expansion_, case OPT_ftrack_macro_expansion>: New
9663 cases. Handle -ftrack-macro-expansion with and without argument.
9664
9665 2011-10-15 Tom Tromey <tromey@redhat.com>
9666 Dodji Seketeli <dodji@redhat.com>
9667
9668 * c-ppoutput.c (scan_translation_unit, maybe_print_line)
9669 (print_line, cb_define, do_line_change): Adjust to avoid touching
9670 the internals of struct line_map. Use the public API instead.
9671 * c-pch.c (c_common_read_pch): Likewise.
9672 * c-lex.c (fe_file_change): Likewise.
9673
9674 2011-10-14 Paolo Carlini <paolo.carlini@oracle.com>
9675
9676 PR c++/17212
9677 * c.opt ([Wformat-zero-length]): Add C++ and Objective-C++.
9678
9679 2011-10-11 Paolo Carlini <paolo.carlini@oracle.com>
9680
9681 PR c++/33067
9682 * c-pretty-print.c (pp_c_floating_constant): Output
9683 max_digits10 (in the ISO C++ WG N1822 sense) decimal digits.
9684
9685 2011-10-11 Michael Meissner <meissner@linux.vnet.ibm.com>
9686
9687 * c-common.c (def_builtin_1): Delete old interface with two
9688 parallel arrays to hold standard builtin declarations, and replace
9689 it with a function based interface that can support creating
9690 builtins on the fly in the future. Change all uses, and poison
9691 the old names. Make sure 0 is not a legitimate builtin index.
9692 * c-omp.c (c_finish_omp_barrier): Ditto.
9693 (c_finish_omp_taskwait): Ditto.
9694 (c_finish_omp_flush): Ditto.
9695
9696 2011-10-11 Tristan Gingold <gingold@adacore.com>
9697
9698 * c.opt: (fallow-parameterless-variadic-functions): New.
9699
9700 2011-09-08 Dodji Seketeli <dodji@redhat.com>
9701
9702 PR c++/33255 - Support -Wunused-local-typedefs warning
9703 * c-common.h (struct c_language_function::local_typedefs): New
9704 field.
9705 (record_locally_defined_typedef, maybe_record_typedef_use)
9706 (maybe_warn_unused_local_typedefs): Declare new functions.
9707 * c-common.c (record_locally_defined_typedef)
9708 (maybe_record_typedef_use)
9709 (maybe_warn_unused_local_typedefs): Define new functions.
9710 * c.opt: Declare new -Wunused-local-typedefs flag.
9711
9712 2011-09-06 Eric Botcazou <ebotcazou@adacore.com>
9713
9714 PR middle-end/50266
9715 * c-common.c (c_fully_fold_internal) <ADDR_EXPR>: Fold offsetof-like
9716 computations.
9717
9718 2011-09-05 Richard Guenther <rguenther@suse.de>
9719
9720 * c-common.c (complete_array_type): Use ssize_int (-1) instead
9721 of integer_minus_one_node for empty array upper bounds.
9722
9723 2011-08-28 Dodji Seketeli <dodji@redhat.com>
9724
9725 * c-pch.c (c_common_read_pch): Call linemap_add with LC_ENTER as
9726 it's the first time it's being called on this main TU.
9727
9728 2011-08-24 Richard Guenther <rguenther@suse.de>
9729
9730 PR c/49396
9731 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Fix conditional.
9732
9733 2011-08-22 Gabriel Charette <gchare@google.com>
9734
9735 * c-opts.c (c_finish_options): Force BUILTINS_LOCATION for tokens
9736 defined in cpp_init_builtins and c_cpp_builtins.
9737
9738 2011-08-19 Joseph Myers <joseph@codesourcery.com>
9739
9740 * c-common.c (c_common_reswords): Add __builtin_complex.
9741 * c-common.h (RID_BUILTIN_COMPLEX): New.
9742
9743 2011-08-18 Joseph Myers <joseph@codesourcery.com>
9744
9745 * c-common.c (c_common_reswords): Add _Noreturn.
9746 (keyword_is_function_specifier): Handle RID_NORETURN.
9747 * c-common.h (RID_NORETURN): New.
9748
9749 2011-08-10 Artjoms Sinkarovs <artyom.shinakroff@gmail.com>
9750
9751 * c-common.c (unsafe_conversion_p): New function. Check if it is
9752 unsafe to convert an expression to the type.
9753 (conversion_warning): Adjust, use unsafe_conversion_p.
9754 * c-common.h (unsafe_conversion_p): New function declaration.
9755
9756 2011-08-02 Jakub Jelinek <jakub@redhat.com>
9757
9758 * c-common.h (c_finish_omp_atomic): Adjust prototype.
9759 (c_finish_omp_taskyield): New prototype.
9760 * c-omp.c (c_finish_omp_atomic): Add OPCODE, V, LHS1 and RHS1
9761 arguments. Handle OMP_ATOMIC_READ, OMP_ATOMIC_CAPTURE_OLD and
9762 OMP_ATOMIC_CAPTURE_NEW in addition to OMP_ATOMIC. If LHS1
9763 or RHS1 have side-effects, evaluate those too in the right spot,
9764 if it is a decl and LHS is also a decl, error out if they
9765 aren't the same.
9766 (c_finish_omp_taskyield): New function.
9767 * c-cppbuiltin.c (c_cpp_builtins): Change _OPENMP to 201107.
9768 * c-pragma.c (omp_pragmas): Add taskyield.
9769 * c-pragma.h (enum pragma_kind): Add PRAGMA_OMP_TASKYIELD.
9770 (enum pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_FINAL and
9771 PRAGMA_OMP_CLAUSE_MERGEABLE.
9772
9773 2011-07-25 Dodji Seketeli <dodji@redhat.com>
9774
9775 * c-common.h (set_underlying_type): Remove parm name from
9776 declaration.
9777
9778 2011-07-25 Romain Geissler <romain.geissler@gmail.com>
9779
9780 * c-pretty-print.h: Search c-common.h in c-family.
9781
9782 2011-07-22 Jason Merrill <jason@redhat.com>
9783
9784 PR c++/49793
9785 * c.opt (Wnarrowing): New.
9786
9787 PR c++/30112
9788 * c-common.h: Declare c_linkage_bindings.
9789 * c-pragma.c (handle_pragma_redefine_extname): Use it.
9790
9791 PR c++/49813
9792 * c-opts.c (set_std_cxx0x): Set flag_isoc94 and flag_isoc99.
9793 * c-pretty-print.c (pp_c_cv_qualifiers): Check c_dialect_cxx as well
9794 as flag_isoc99 for 'restrict'.
9795 (pp_c_specifier_qualifier_list): Likewise for _Complex.
9796
9797 2011-07-21 Ian Lance Taylor <iant@google.com>
9798
9799 PR middle-end/49705
9800 * c-common.c (c_disable_warnings): New static function.
9801 (c_enable_warnings): New static function.
9802 (c_fully_fold_internal): Change local unused_p to bool. Call
9803 c_disable_warnings and c_enable_warnings rather than change
9804 c_inhibit_evaluation_warnings.
9805
9806 2011-07-20 Jason Merrill <jason@redhat.com>
9807
9808 PR c++/6709 (DR 743)
9809 PR c++/42603 (DR 950)
9810 * c-common.h (CPP_KEYWORD, CPP_TEMPLATE_ID): Move from cp/parser.h.
9811 (CPP_NESTED_NAME_SPECIFIER, N_CP_TTYPES): Likewise.
9812 (CPP_DECLTYPE): New.
9813 * c-common.c (c_parse_error): Handle CPP_DECLTYPE.
9814
9815 2011-07-19 Richard Guenther <rguenther@suse.de>
9816
9817 * c-common.c (pointer_int_sum): Use fold_build_pointer_plus.
9818 * c-omp.c (c_finish_omp_for): Likewise.
9819
9820 2011-07-12 Eric Botcazou <ebotcazou@adacore.com>
9821
9822 * c-ada-spec.c (dump_nested_types): Put semi-colon after empty loop
9823 body on the next line.
9824
9825 2011-07-08 Jason Merrill <jason@redhat.com>
9826
9827 PR c++/45437
9828 * c-omp.c (check_omp_for_incr_expr): Handle preevaluation.
9829
9830 PR c++/49673
9831 * c-common.c (c_apply_type_quals_to_decl): Don't check
9832 TYPE_NEEDS_CONSTRUCTING.
9833
9834 2011-07-06 Richard Guenther <rguenther@suse.de>
9835
9836 * c-common.c (c_common_nodes_and_builtins):
9837 Merge calls to build_common_tree_nodes and build_common_tree_nodes_2.
9838
9839 2011-07-05 Richard Guenther <rguenther@suse.de>
9840
9841 * c-common.c (c_common_nodes_and_builtins): Build all common
9842 tree nodes first.
9843
9844 2011-06-27 Jakub Jelinek <jakub@redhat.com>
9845
9846 * c-common.h (c_tree_chain_next): New static inline function.
9847
9848 * c-common.c (check_builtin_function_arguments): Handle
9849 BUILT_IN_ASSUME_ALIGNED.
9850
9851 2011-06-21 Andrew MacLeod <amacleod@redhat.com>
9852
9853 * c-common.c: Add sync_ or SYNC__ to builtin names.
9854 * c-omp.c: Add sync_ or SYNC__ to builtin names.
9855
9856 2011-06-20 Pierre Vittet <piervit@pvittet.com>
9857
9858 * c-pragma.h (pragma_handler_1arg, pragma_handler_2arg): New
9859 handler.
9860 (gen_pragma_handler): New union.
9861 (internal_pragma_handler): New type.
9862 (c_register_pragma_with_data)
9863 (c_register_pragma_with_expansion_and_data): New functions.
9864
9865 * c-pragma.c (registered_pragmas, c_register_pragma_1)
9866 (c_register_pragma, c_register_pragma_with_expansion)
9867 (c_invoke_pragma_handler): Changed to work with
9868 internal_pragma_handler.
9869 (c_register_pragma_with_data)
9870 (c_register_pragma_with_expansion_and_data): New functions.
9871
9872 2011-06-14 Joseph Myers <joseph@codesourcery.com>
9873
9874 * c-common.c: Include common/common-target.h.
9875 (handle_section_attribute): Use
9876 targetm_common.have_named_sections.
9877 * c-cppbuiltin.c: Include common/common-target.h.
9878 (c_cpp_builtins): Use targetm_common.except_unwind_info.
9879
9880 2011-06-10 Richard Guenther <rguenther@suse.de>
9881
9882 * c-pretty-print.c (pp_c_type_specifier): Use pp_c_identifier
9883 to print a IDENTIFIER_NODE.
9884
9885 2011-06-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9886 Joseph Myers <joseph@codesourcery.com>
9887
9888 * c.opt (fbuilding-libgcc): New option.
9889 * c-cppbuiltin.c (c_cpp_builtins): Define
9890 __LIBGCC_TRAMPOLINE_SIZE__ if flag_building_libgcc.
9891
9892 2011-06-07 Jason Merrill <jason@redhat.com>
9893
9894 * c-common.c (max_tinst_depth): Lower default to 900.
9895
9896 * c-format.c (gcc_cxxdiag_char_table): Add 'S' format.
9897
9898 2011-06-07 Richard Guenther <rguenther@suse.de>
9899
9900 * c-common.c (c_common_nodes_and_builtins): Do not set
9901 size_type_node or call set_sizetype.
9902
9903 2011-06-07 Dodji Seketeli <dodji@redhat.com>
9904
9905 PR debug/49130
9906 * c-pretty-print.c (pp_c_integer_constant): Consider the canonical
9907 type when using pointer comparison to compare types.
9908
9909 2011-06-02 Jonathan Wakely <jwakely.gcc@gmail.com>
9910
9911 * c.opt: Add -Wdelete-non-virtual-dtor.
9912 * c-opts.c (c_common_handle_option): Include it in -Wall.
9913
9914 2011-05-30 Nathan Froyd <froydnj@gcc.gnu.org>
9915
9916 PR bootstrap/49190
9917
9918 Revert:
9919 2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
9920
9921 * c-common.h (struct c_common_identifier): Inherit from tree_typed,
9922 not tree_common.
9923
9924 2011-05-27 Jakub Jelinek <jakub@redhat.com>
9925
9926 PR c++/49165
9927 * c-common.c (c_common_truthvalue_conversion) <case COND_EXPR>: For
9928 C++ don't call c_common_truthvalue_conversion on void type arms.
9929
9930 2011-05-27 Nathan Froyd <froydnj@codesourcery.com>
9931
9932 * c-common.h (struct stmt_tree_s) [x_cur_stmt_list]: Change to a VEC.
9933 (stmt_list_stack): Define.
9934 (cur_stmt_list): Adjust for new type of x_cur_stmt_list.
9935 * c-semantics.c (push_stmt_list, pop_stmt_list): Likewise.
9936
9937 2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
9938
9939 * c-common.c (warning_candidate_p): Check for BLOCKs.
9940
9941 2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
9942
9943 * c-common.h (struct c_common_identifier): Inherit from tree_typed,
9944 not tree_common.
9945
9946 2011-05-25 Jakub Jelinek <jakub@redhat.com>
9947
9948 * c-common.c (def_fn_type): Remove extra va_end.
9949
9950 2011-05-23 Jason Merrill <jason@redhat.com>
9951
9952 PR c++/48106
9953 * c-common.c (c_common_get_narrower): New.
9954 (shorten_binary_op, shorten_compare, warn_for_sign_compare): Use it.
9955
9956 2011-05-23 Nathan Froyd <froydnj@codesourcery.com>
9957
9958 * c-common.h (check_function_arguments): Tweak prototype of
9959 check_function_arguments.
9960 * c-common.c (check_function_arguments): Likewise. Adjust
9961 calls to check_function_nonnull, check_function_format, and
9962 check_function_sentinel.
9963 (check_function_sentinel): Take a FUNCTION_TYPE rather than
9964 separate attributes and typelist arguments. Use
9965 FOREACH_FUNCTION_ARGS to iterate over argument types.
9966
9967 2011-05-15 Paolo Carlini <paolo.carlini@oracle.com>
9968
9969 * c-common.c (c_common_reswords): Reorder.
9970 * c-common.h (rid): Likewise.
9971
9972 2011-05-10 Nathan Froyd <froydnj@codesourcery.com>
9973
9974 * c-common.c (def_fn_type): Don't call build_function_type, call
9975 build_function_type_array or build_varargs_function_type_array
9976 instead.
9977 (c_common_nodes_and_builtins): Likewise.
9978
9979 2011-05-05 Nathan Froyd <froydnj@codesourcery.com>
9980
9981 * c-common.c (c_add_case_label): Omit the loc argument to
9982 build_case_label.
9983 * c-common.h (build_case_label): Remove.
9984 * c-semantics.c (build_case_label): Remove.
9985
9986 2011-05-05 Joseph Myers <joseph@codesourcery.com>
9987
9988 * c-objc.h (objc_start_method_definition): Update prototype.
9989 * stub-objc.c (objc_start_method_definition): Add extra parameter.
9990
9991 2011-05-04 Nathan Froyd <froydnj@codesourcery.com>
9992
9993 * c-common.c (check_main_parameter_types): Reindent. Don't use
9994 TYPE_ARG_TYPES directly.
9995 (handle_nonnull_attribute): Likewise.
9996 (sync_resolve_params): Likewise.
9997 * c-format.c (handle_format_arg_attribute): Likewise. Adjust call
9998 to check_format_string.
9999 (handle_format_attribute): Likewise.
10000 (check_format_string): Take a function type to examine instead of
10001 a type list. Use a function_arg_iterator to step through argument
10002 types.
10003
10004 2011-05-04 Richard Guenther <rguenther@suse.de>
10005
10006 * c-common.c (fix_string_type): Use size_int for index type bounds.
10007 (start_fname_decls): Do not pass NULL to build_int_cst.
10008 (c_init_attributes): Likewise.
10009 * c-lex.c (c_lex_with_flags): Likewise.
10010
10011 2011-04-27 Jason Merrill <jason@redhat.com>
10012
10013 * c-common.c (make_tree_vector_from_list): New.
10014 * c-common.h: Declare it.
10015
10016 2011-04-26 Richard Guenther <rguenther@suse.de>
10017
10018 PR preprocessor/48248
10019 * c-ppoutput.c (maybe_print_line): Always optimize newlines
10020 for output size with -P.
10021
10022 2011-04-25 Paolo Carlini <paolo.carlini@oracle.com>
10023
10024 * c-common.c (struct c_common_resword): Add __underlying_type.
10025 * c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
10026
10027 2011-04-20 Jim Meyering <meyering@redhat.com>
10028
10029 * c-format.c (init_dollar_format_checking): Remove useless
10030 if-before-free.
10031
10032 2011-04-15 Nicola Pero <nicola.pero@meta-innovation.com>
10033
10034 * c-objc.h (objc_get_interface_ivars): Removed.
10035 (objc_detect_field_duplicates): New.
10036 * stub-objc.c: Likewise.
10037
10038 2011-04-14 Nicola Pero <nicola.pero@meta-innovation.com>
10039
10040 * stub-objc.c (objc_declare_protocols): Renamed to
10041 objc_declare_protocol.
10042 * c-objc.h: Likewise.
10043
10044 2011-04-14 Nicola Pero <nicola.pero@meta-innovation.com>
10045
10046 * stub-objc.c (objc_declare_class): Updated argument name.
10047
10048 2011-04-12 Nathan Froyd <froydnj@codesourcery.com>
10049
10050 * c-common.h (c_common_init_ts): Declare.
10051 * c-common.c (c_common_init_ts): Define.
10052
10053 2011-04-12 Nicola Pero <nicola.pero@meta-innovation.com>
10054
10055 * c-objc.h (objc_build_message_expr): Updated prototype.
10056 * stub-objc.c (objc_build_message_expr): Likewise.
10057
10058 2011-04-12 Martin Jambor <mjambor@suse.cz>
10059
10060 * c-gimplify.c (c_genericize): Call cgraph_get_create_node instead
10061 of cgraph_node.
10062
10063 2011-04-11 Richard Guenther <rguenther@suse.de>
10064
10065 * c-common.c (complete_array_type): Build a range type of
10066 proper type.
10067
10068 2011-04-08 Nathan Froyd <froydnj@codesourcery.com>
10069
10070 * c-common.c (handle_sentinel_attribute): Don't use TYPE_ARG_TYPES.
10071 (handle_type_generic_attribute): Likewise.
10072
10073 2011-04-07 Jason Merrill <jason@redhat.com>
10074
10075 PR c++/48450
10076 * c-common.c (c_common_truthvalue_conversion): Don't ignore
10077 conversion from C++0x scoped enum.
10078
10079 2011-04-06 Joseph Myers <joseph@codesourcery.com>
10080
10081 * c-target-def.h: New file.
10082 * c-target.def: New file.
10083 * c-target.h: New file.
10084 * c-common.c (targetcm): Don't define here.
10085 * c-common.h (default_handle_c_option): Declare.
10086 * c-format.c: Include c-target.h instead of target.h.
10087 * c-opts.c: Include c-target.h instead of target.h. Explicitly
10088 include tm.h.
10089 (default_handle_c_option): Move from targhooks.c.
10090
10091 2011-03-29 Jakub Jelinek <jakub@redhat.com>
10092
10093 PR preprocessor/48248
10094 * c-ppoutput.c (print): Add src_file field.
10095 (init_pp_output): Initialize it.
10096 (maybe_print_line): Don't optimize by adding up to 8 newlines
10097 if map->to_file and print.src_file are different file.
10098 (print_line): Update print.src_file.
10099
10100 2011-03-25 Kai Tietz <ktietz@redhat.com>
10101
10102 * c-ada-spec.c (compare_comment): Use filename_cmp
10103 instead of strcmp for filename.
10104
10105 2011-03-25 Jeff Law <law@redhat.com>
10106
10107 * c-common.c (def_fn_type): Add missing va_end.
10108
10109 2011-03-25 Jason Merrill <jason@redhat.com>
10110
10111 * c.opt: Add -std=c++03.
10112
10113 2011-03-22 Eric Botcazou <ebotcazou@adacore.com>
10114
10115 * c-ada-spec.c (dump_ada_template): Skip non-class instances.
10116
10117 2011-03-17 Kai Tietz <ktietz@redhat.com>
10118
10119 PR target/12171
10120 * c-pretty-print.c (pp_c_specifier_qualifier_list):
10121 Display allowed attributes for function pointer types.
10122 (pp_c_attributes_display): New function to display
10123 attributes having affects_type_identity flag set to true.
10124 * c-pretty-print.h (pp_c_attributes_display): New prototype.
10125
10126 * c-common.c (c_common_attribute_table):
10127 Add new element.
10128 (c_common_format_attribute_table): Likewise.
10129
10130 2011-03-18 Jason Merrill <jason@redhat.com>
10131
10132 * c.opt (fconstexpr-depth): Add Var(max_constexpr_depth).
10133 * c-common.h: Don't declare it here.
10134 * c-common.c: Or define it here.
10135 * c-opts.c (c_common_handle_option): Or set it here.
10136
10137 PR c++/35315
10138 * c-common.c (handle_transparent_union_attribute): Don't
10139 make a duplicate type in C++.
10140
10141 2011-03-15 Jason Merrill <jason@redhat.com>
10142
10143 * c-common.c (max_constexpr_depth): New.
10144 * c-common.h: Declare it.
10145 * c-opts.c (c_common_handle_option): Set it.
10146 * c.opt (fconstexpr-depth): New option.
10147
10148 2011-03-11 Jason Merrill <jason@redhat.com>
10149
10150 * c-common.c (attribute_takes_identifier_p): Add missing const.
10151
10152 PR c++/46803
10153 * c-common.c (attribute_takes_identifier_p): Assume that an
10154 unknown attribute takes an identifier.
10155
10156 2011-03-07 Nathan Froyd <froydnj@codesourcery.com>
10157
10158 PR c/47786
10159 * c-common.c (c_type_hash): Call list_length instead of iterating
10160 through DECL_CHAIN. Rename 'i' to 'n_elements'.
10161
10162 2011-02-19 Jakub Jelinek <jakub@redhat.com>
10163
10164 PR c/47809
10165 * c-common.c (c_fully_fold_internal): Handle VIEW_CONVERT_EXPR.
10166
10167 2011-02-17 Iain Sandoe <iains@gcc.gnu.org>
10168
10169 * c.opt (fobjc-abi-version=) New.
10170 (fobjc-nilcheck): New.
10171
10172 2011-02-03 Nathan Froyd <froydnj@codesourcery.com>
10173
10174 PR c++/46890
10175 * c-common.h (keyword_is_decl_specifier): Declare.
10176 * c-common.c (keyword_is_decl_specifier): Define.
10177 (keyword_is_function_specifier): New function.
10178
10179 2011-01-26 Jakub Jelinek <jakub@redhat.com>
10180
10181 PR c/47473
10182 * c-lex.c (interpret_float): If CPP_N_IMAGINARY, ensure
10183 EXCESS_PRECISION_EXPR is created with COMPLEX_TYPE instead of
10184 REAL_TYPE.
10185
10186 2011-01-26 Arnaud Charlet <charlet@adacore.com>
10187
10188 * c-ada-spec.c (dump_generic_ada_node): Avoid dereferencing null type.
10189
10190 2011-01-26 Jakub Jelinek <jakub@redhat.com>
10191
10192 PR pch/47430
10193 * c-opts.c (c_common_post_options): Call c_common_no_more_pch
10194 after init_c_lex if pch_file is set.
10195
10196 2011-01-26 Dave Korn <dave.korn.cygwin@gmail.com>
10197
10198 PR c++/43601
10199 * c.opt (-fkeep-inline-dllexport): New switch.
10200
10201 2011-01-12 Richard Guenther <rguenther@suse.de>
10202
10203 PR middle-end/32511
10204 * c-common.c (handle_weak_attribute): Warn instead of error
10205 on declaring an inline function weak.
10206
10207 2011-01-05 Tom Tromey <tromey@redhat.com>
10208
10209 * c-common.h (lvalue_error): Update.
10210 * c-common.c (lvalue_error): Add 'loc' argument. Call error_at,
10211 not error.
10212
10213 2010-12-29 Nicola Pero <nicola.pero@meta-innovation.com>
10214
10215 PR objc/47075
10216 * c-objc.h (objc_finish_message_expr): Added argument to
10217 prototype.
10218
10219 2010-12-22 Nathan Froyd <froydnj@codesourcery.com>
10220
10221 * c-common.c (handle_nonnull_attribute, handle_sentinel_attribute):
10222 Use prototype_p.
10223
10224 2010-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
10225
10226 * c-objc.h (objc_maybe_warn_exceptions): New.
10227 * stub-objc.c (objc_maybe_warn_exceptions): New.
10228
10229 2010-12-10 Nathan Froyd <froydnj@codesourcery.com>
10230
10231 * c-common.h (readonly_error): Declare.
10232 * c-common.c (readonly_error): Define.
10233
10234 2010-12-09 Nathan Froyd <froydnj@codesourcery.com>
10235
10236 * c-common.h (invalid_indirection_error): Declare.
10237 * c-common.c (invalid_indirection_error): Define.
10238
10239 2010-12-03 Richard Guenther <rguenther@suse.de>
10240
10241 PR c/46745
10242 * c-pretty-print.c (pp_c_postfix_expression): Handle MEM_REF.
10243 (pp_c_unary_expression): Likewise.
10244 (pp_c_expression): Likewise.
10245
10246 2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
10247
10248 * c-common.h (objc_finish_function): New.
10249 (objc_non_volatilized_type): Removed.
10250 (objc_type_quals_match): Removed.
10251 * stub-objc.c (objc_finish_function): New.
10252 (objc_non_volatilized_type): Removed.
10253 (objc_type_quals_match): Removed.
10254
10255 2010-11-30 Joseph Myers <joseph@codesourcery.com>
10256
10257 * c-common.h (parse_optimize_options): Declare.
10258 * c-cppbuiltin.c, c-format.c, c-gimplify.c, c-lex.c, c-omp.c,
10259 c-pch.c, c-pragma.c, c-semantics.c: Don't include toplev.h.
10260
10261 2010-11-29 Joseph Myers <joseph@codesourcery.com>
10262
10263 * c-opts.c (check_deps_environment_vars): Use getenv instead of
10264 GET_ENVIRONMENT.
10265 * c-pch.c (O_BINARY): Don't define here.
10266 * c-pragma.h: Include "cpplib.h" instead of <cpplib.h>.
10267
10268 2010-11-25 Joseph Myers <joseph@codesourcery.com>
10269
10270 * c-cppbuiltin.c (c_cpp_builtins): Pass &global_options to
10271 targetm.except_unwind_info.
10272
10273 2010-11-23 Joseph Myers <joseph@codesourcery.com>
10274
10275 * c-opts.c (c_common_handle_option): Pass location to
10276 set_struct_debug_option.
10277
10278 2010-11-23 Joseph Myers <joseph@codesourcery.com>
10279
10280 * c-common.c (visibility_options): Move from ../opts.c.
10281 * c-common.h (struct visibility_flags, visibility_options):
10282 Declare here.
10283 * c-opts.c (finish_options): Rename to c_finish_options.
10284 (c_common_init): Update call to finish_options.
10285
10286 2010-11-22 Nicola Pero <nicola.pero@meta-innovation.com>
10287
10288 PR objc/34033
10289 * c-lex.c (lex_string): Check that each string in an Objective-C
10290 string concat sequence starts with either one or zero '@', and
10291 that there are no spurious '@' signs at the end.
10292
10293 2010-11-20 Joseph Myers <joseph@codesourcery.com>
10294
10295 * c-pragma.c: Remove conditionals on HANDLE_PRAGMA_PACK,
10296 HANDLE_PRAGMA_PACK_PUSH_POP, HANDLE_PRAGMA_WEAK and
10297 HANDLE_PRAGMA_VISIBILITY.
10298 * c-pragma.h (HANDLE_PRAGMA_WEAK, HANDLE_PRAGMA_PACK,
10299 HANDLE_PRAGMA_VISIBILITY): Don't define.
10300 (HANDLE_SYSV_PRAGMA, HANDLE_PRAGMA_PACK_PUSH_POP): Don't test.
10301
10302 2010-11-20 Nathan Froyd <froydnj@codesourcery.com>
10303
10304 PR c++/16189
10305 PR c++/36888
10306 PR c++/45331
10307 * c-common.h (keyword_begins_type_specifier): Declare.
10308 (keyword_is_storage_class_specifier): Declare.
10309 (keyword_is_type_qualifier): Declare.
10310 * c-common.c (keyword_begins_type_specifier): New function.
10311 (keyword_is_storage_class_specifier): New function.
10312 (keyword_is_type_qualifier): Declare.
10313
10314 2010-11-19 Joseph Myers <joseph@codesourcery.com>
10315
10316 PR c/46547
10317 * c-common.c (in_late_binary_op): Define.
10318 (c_common_truthvalue_conversion): Check in_late_binary_op before
10319 calling c_save_expr.
10320 * c-common.h (in_late_binary_op): Declare.
10321
10322 2010-11-19 Joseph Myers <joseph@codesourcery.com>
10323
10324 * c-opts.c (c_common_handle_option): Update calls to
10325 set_struct_debug_option.
10326
10327 2010-11-19 Nicola Pero <nicola.pero@meta-innovation.com>
10328
10329 * c-common.h (objc_declare_protocols): Added additional argument.
10330 * stub-objc.c (objc_declare_protocol): Same change.
10331
10332 2010-11-18 Nathan Froyd <froydnj@codesourcery.com>
10333
10334 PR c/33193
10335 * c-common.h (build_real_imag_expr): Declare.
10336 * c-semantics.c (build_real_imag_expr): Define.
10337
10338 2010-11-17 Joseph Myers <joseph@codesourcery.com>
10339
10340 * c-opts.c (c_common_parse_file): Take no arguments.
10341 * c-common.h (c_common_parse_file): Update prototype.
10342
10343 2010-11-16 Jakub Jelinek <jakub@redhat.com>
10344
10345 PR c++/46401
10346 * c-common.c (warning_candidate_p): Don't track non-const calls
10347 or STRING_CSTs.
10348
10349 2010-11-15 Ian Lance Taylor <iant@google.com>
10350
10351 * c-lex.c (init_c_lex): Set macro debug callbacks if
10352 flag_dump_go_spec is set.
10353
10354 2010-11-15 Nicola Pero <nicola.pero@meta-innovation.com>
10355
10356 * c-common.h (objc_build_incr_expr_for_property_ref): New.
10357 * stub-objc.c (objc_build_incr_expr_for_property_ref): New.
10358
10359 2010-11-15 Nathan Froyd <froydnj@codesourcery.com>
10360
10361 PR preprocessor/45038
10362 * c-cppbuiltin.c (c_cpp_builtins): Use different format for C++
10363 dialects.
10364
10365 2010-11-12 Joseph Myers <joseph@codesourcery.com>
10366
10367 * c-common.h (c_family_lang_mask): Declare.
10368 * c-opts.c (c_family_lang_mask): Make extern.
10369 * c-pragma.c (handle_pragma_diagnostic): Use
10370 control_warning_option.
10371
10372 2010-11-12 Joseph Myers <joseph@codesourcery.com>
10373
10374 * c-common.c (parse_optimize_options): Update call to
10375 decode_options.
10376 * c-common.h (c_common_handle_option): Update prototype.
10377 * c-opts.c (c_common_handle_option): Take location_t parameter and
10378 pass it to other functions.
10379
10380 2010-11-11 Joseph Myers <joseph@codesourcery.com>
10381
10382 * c-opts.c (warning_as_error_callback): Remove.
10383 (c_common_initialize_diagnostics): Don't call
10384 register_warning_as_error_callback.
10385 (c_common_handle_option): Handle -Werror=normalized= here.
10386
10387 2010-11-10 Joseph Myers <joseph@codesourcery.com>
10388
10389 * c-common.c (handle_mode_attribute): Use %' and word "signedness"
10390 in diagnostic.
10391 * c-opts.c (c_common_parse_file): Start diagnostics with lowercase
10392 letter.
10393 * c-pragma.c (handle_pragma_target, handle_pragma_optimize):
10394 Remove trailing '.' from diagnostics.
10395 * c.opt (Wwrite-strings_: Avoid '`' in help text.
10396
10397 2010-11-10 Joseph Myers <joseph@codesourcery.com>
10398
10399 * c-common.c (parse_optimize_options): Pass global_dc to
10400 decode_options.
10401 * c-opts.c (c_common_handle_option): Pass &global_options to
10402 set_Wstrict_aliasing.
10403 * c.opt (v): Don't mark Common or document here.
10404
10405 2010-11-06 Iain Sandoe <iains@gcc.gnu.org>
10406
10407 PR target/44981
10408 * c-format.c (format_type): New type gcc_objc_string_format_type.
10409 (valid_stringptr_type_p): New.
10410 (handle_format_arg_attribute): Use valid_stringptr_type_p ().
10411 (check_format_string): Pass expected type, use
10412 valid_stringptr_type_p (), check that the format string types are
10413 consistent with the format specification.
10414 (decode_format_attr): Warn if NSString is used outside objective-c.
10415 (format_types_orig): Add NSString.
10416 (format_name): New.
10417 (format_flags): New.
10418 (check_format_arg): Handle format strings requiring an external parser.
10419 first_target_format_type: New variable.
10420 (handle_format_attribute): Set up first_target_format_type, pass the
10421 expected format arg string type to check_format_string().
10422 * c-common.h (FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL): New flag.
10423 * stub-objc.c (objc_string_ref_type_p): New.
10424 (objc_check_format_arg): New.
10425
10426 2010-11-04 Nicola Pero <nicola.pero@meta-innovation.com>
10427
10428 Fixed using the Objective-C 2.0 dot-syntax with class names.
10429 * c-common.h (objc_build_class_component_ref): New.
10430 * stub-objc.c (objc_build_class_component_ref): New.
10431
10432 2010-11-03 Nicola Pero <nicola.pero@meta-innovation.com>
10433
10434 * c.opt (Wproperty-assign-default): New option.
10435
10436 2010-11-03 Nicola Pero <nicola.pero@meta-innovation.com>
10437
10438 Implemented -fobjc-std=objc1 flag.
10439 * c.opt (fobjc-std=objc1): New option.
10440
10441 2010-11-01 Nicola Pero <nicola.pero@meta-innovation.com>
10442
10443 Implemented format and noreturn attributes for Objective-C methods.
10444 * c-common.c (handle_noreturn_attribute): Recognize 'noreturn'
10445 attribute for Objective-C methods.
10446
10447 2010-10-31 Jason Merrill <jason@redhat.com>
10448
10449 * c-common.c (conversion_warning, warn_for_collisions_1): Use
10450 EXPR_LOC_OR_HERE.
10451
10452 2010-10-30 Nicola Pero <nicola.pero@meta-innovation.com>
10453
10454 Implemented Objective-C 2.0 @property, @synthesize and @dynamic.
10455 * c-common.h (enum rid): Removed RID_COPIES and RID_IVAR.
10456 (objc_add_property_declaration): Removed arguments for copies and
10457 ivar.
10458 (objc_build_getter_call): Renamed to
10459 objc_maybe_build_component_ref.
10460 (objc_build_setter_call): Renamed to objc_maybe_build_modify_expr.
10461 (objc_is_property_ref): New.
10462 * c-common.c (c_common_reswords): Removed copies and ivar.
10463 * stub-objc.c (objc_add_property_declaration): Removed arguments
10464 for copies and ivar.
10465 (objc_build_getter_call): Renamed to
10466 objc_maybe_build_component_ref.
10467 (objc_build_setter_call): Renamed to objc_maybe_build_modify_expr.
10468 (objc_is_property_ref): New.
10469
10470 2010-10-29 Arnaud Charlet <charlet@adacore.com>
10471 Matthew Gingell <gingell@adacore.com>
10472
10473 * c-ada-spec.c (separate_class_package): New function.
10474 (pp_ada_tree_identifier): Prefix references to C++ classes with the
10475 name of their enclosing package.
10476 (print_ada_declaration): Use separate_class_package.
10477
10478 2010-10-27 Jason Merrill <jason@redhat.com>
10479
10480 * c-common.c (c_common_reswords): Add __is_literal_type.
10481 * c-common.h (enum rid): Add RID_IS_LITERAL_TYPE.
10482
10483 * c-common.c (check_case_value): Remove special C++ code.
10484
10485 2010-10-27 Nicola Pero <nicola.pero@meta-innovation.com>
10486
10487 * c-common.h (enum rid): Added RID_READWRITE, RID_ASSIGN,
10488 RID_RETAIN, RID_COPY and RID_NONATOMIC. Updated RID_FIRST_PATTR
10489 and RID_LAST_PATTR.
10490 (objc_add_property_declaration): Added additional arguments.
10491 (objc_property_attribute_kind): Removed.
10492 (objc_set_property_attr): Removed.
10493 * c-common.c (c_common_reswords): Added readwrite, assign, retain,
10494 copy and nonatomic.
10495 * stub-objc.c (objc_add_property_declaration): Added additional
10496 arguments.
10497 (objc_set_property_attr): Removed.
10498
10499 2010-10-27 Nicola Pero <nicola.pero@meta-innovation.com>
10500
10501 * c-common.h (objc_add_property_variable): Renamed to
10502 objc_add_property_declaration. Added location argument.
10503 * stub-objc.c (objc_add_property_variable): Same change.
10504
10505 2010-10-23 Nicola Pero <nicola.pero@meta-innovation.com>
10506
10507 * c-common.h (objc_maybe_printable_name): New.
10508 * stub-objc.c (objc_maybe_printable_name): New.
10509
10510 2010-10-22 Artjoms Sinkarovs <artyom.shinakroff@gmail.com>
10511 Andrew Pinski <pinskia@gmail.com>
10512
10513 * c-common.h (c_common_mark_addressable_vec): Declare.
10514 * c-common.c (c_common_mark_addressable_vec): New function.
10515
10516 2010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
10517
10518 * c-common.h (objc_set_method_type): Removed.
10519 (objc_add_method_declaration): Added boolean argument.
10520 (objc_start_method_definition): Same change.
10521 (objc_build_method_signature): Same change.
10522 * stub-objc.c (objc_set_method_type): Removed.
10523 (objc_add_method_declaration): Added boolean argument.
10524 (objc_start_method_definition): Same change.
10525 (objc_build_method_signature): Same change.
10526
10527 2010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
10528
10529 * c-common.h (finish_file): Removed.
10530 (objc_write_global_declarations): New.
10531 * c-opts.c (c_common_parse_file): Do not call finish_file.
10532 * stub-objc.c (objc_write_global_declarations): New.
10533
10534 2010-10-18 Nicola Pero <nicola.pero@meta-innovation.com>
10535
10536 Implemented parsing @synthesize and @dynamic for
10537 Objective-C/Objective-C++.
10538 * c-common.h (enum rid): Add RID_AT_SYNTHESIZE and RID_AT_DYNAMIC.
10539 (objc_add_synthesize_declaration): New.
10540 (objc_add_dynamic_declaration): New.
10541 * c-common.c (c_common_reswords): Add synthesize and dynamic.
10542 * stub-objc.c (objc_add_synthesize_declaration): New.
10543 (objc_add_dynamic_declaration): New.
10544
10545 2010-10-18 Michael Meissner <meissner@linux.vnet.ibm.com>
10546
10547 PR target/46041
10548 * c-cppbuiltin.c (mode_has_fma): Move function here from
10549 builtins.c. Don't use the fma optab, instead just use the
10550 HAVE_fma* macros, so that __FP_FAST_FMA* will be defined when
10551 using -save-temps.
10552
10553 2010-10-18 Nicola Pero <nicola.pero@meta-innovation.com>
10554
10555 Merge from 'apple/trunk' branch on FSF servers.
10556
10557 2005-11-08 Fariborz Jahanian <fjahanian@apple.com>
10558
10559 Radar 4330422
10560 * c-common.h (objc_non_volatilized_type): New declaration
10561 * stub-objc.c (objc_non_volatilized_type): New stub.
10562
10563 2010-10-17 Nicola Pero <nicola.pero@meta-innovation.com>
10564
10565 Merge from 'apple/trunk' branch on FSF servers.
10566
10567 2006-03-27 Fariborz Jahanian <fjahanian@apple.com>
10568
10569 Radar 4133425
10570 * c-common.h (objc_diagnose_private_ivar): New decl.
10571 * stub-objc.c (objc_diagnose_private_ivar): New stub.
10572
10573 2010-10-17 Iain Sandoe <iains@gcc.gnu.org>
10574
10575 * c-common.c (c_common_reswords): Add package, RID_AT_PACKAGE.
10576 * c-common.h (enum rid): Add RID_AT_PACKAGE.
10577 (objc_ivar_visibility_kind): New enum.
10578 (objc_set_visibility): Adjust prototype to use visibility enum.
10579 * stub-objc.c (objc_set_visibility): Adjust stub to use
10580 visibility enum.
10581
10582 2010-10-14 Michael Meissner <meissner@linux.vnet.ibm.com>
10583
10584 * c-cppbuiltin.c (builtin_define_float_constants): Emit
10585 __FP_FAST_FMA, __FP_FAST_FMAF, and __FP_FAST_FMAL if the machine
10586 has the appropriate fma builtins.
10587 (c_cpp_builtins): Adjust call to builtin_define_float_constants.
10588
10589 2010-10-14 Iain Sandoe <iains@gcc.gnu.org>
10590
10591 merge from FSF apple 'trunk' branch.
10592 2006 Fariborz Jahanian <fjahanian@apple.com>
10593
10594 Radars 4436866, 4505126, 4506903, 4517826
10595 * c-common.c (c_common_resword): Define @property and its attributes.
10596 * c-common.h: Define property attribute enum entries.
10597 (OBJC_IS_PATTR_KEYWORD): New.
10598 (objc_property_attribute_kind): New enum.
10599 Declare objc_set_property_attr (), objc_add_property_variable (),
10600 objc_build_getter_call () and objc_build_setter_call ().
10601 * stub-objc.c (objc_set_property_attr): New stub.
10602 (objc_add_property_variable): Likewise.
10603 (objc_build_getter_call): Likewise.
10604 (objc_build_setter_call) Likewise.
10605
10606 2010-10-13 Iain Sandoe <iains@gcc.gnu.org>
10607
10608 merge from FSF apple 'trunk' branch.
10609 2006-04-26 Fariborz Jahanian <fjahanian@apple.com>
10610
10611 Radar 3803157 (method attributes)
10612 * c-common.c (handle_deprecated_attribute): Recognize
10613 objc methods as valid declarations.
10614 * c-common.h: Declare objc_method_decl ().
10615 * stub-objc.c (objc_method_decl): New stub.
10616
10617 2010-10-08 Joseph Myers <joseph@codesourcery.com>
10618
10619 * c-common.c (parse_optimize_options): Call
10620 decode_cmdline_options_to_array_default_mask before
10621 decode_options. Update arguments to decode_options.
10622 * c-common.h (c_common_init_options_struct): Declare.
10623 * c-opts.c (c_common_init_options_struct): New. Split out from
10624 c_common_init_options.
10625
10626 2010-10-06 Nicola Pero <nicola.pero@meta-innovation.com>
10627
10628 Implemented fast enumeration for Objective-C.
10629 * c-common.h (objc_finish_foreach_loop): New.
10630 * stub-objc.c (objc_finish_foreach_loop): New.
10631
10632 2010-10-05 Joseph Myers <joseph@codesourcery.com>
10633
10634 * c-common.h (struct diagnostic_context): Don't declare here.
10635 (c_common_initialize_diagnostics): Declare using
10636 diagnostic_context typedef.
10637 * c-opts.c (c_common_handle_option): Pass global_dc to
10638 handle_generated_option.
10639
10640 2010-10-04 Joseph Myers <joseph@codesourcery.com>
10641
10642 * c-opts.c (c_common_handle_option): Pass &global_options_set to
10643 handle_generated_option.
10644
10645 2010-10-03 Ian Lance Taylor <iant@google.com>
10646
10647 * c.opt (-fplan9-extensions): New option.
10648
10649 2010-10-03 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
10650
10651 * c-cppbuiltin.c (define__GNUC__, builtin_define_type_precision):
10652 Remove.
10653 (c_cpp_builtins): Call functions from cppbuiltin.c instead
10654 of duplicating code.
10655
10656 2010-09-30 Iain Sandoe <iains@gcc.gnu.org>
10657
10658 * c-common.c: Add two new entries for @optional
10659 and @required keywords.
10660
10661 merge from FSF 'apple/trunk' branch.
10662 2006-01-30 Fariborz Jahanian <fjahanian@apple.com>
10663
10664 Radar 4386773
10665 * c-common.h (RID_AT_OPTIONAL, RID_AT_REQUIRED): Two new
10666 objective-c keywords.
10667 (objc_set_method_opt): New declaration.
10668 * stub-objc.c (objc_set_method_opt): New stub.
10669
10670 2010-09-30 Joseph Myers <joseph@codesourcery.com>
10671
10672 * c-common.c (handle_optimize_attribute): Pass &global_options to
10673 cl_optimization_save and cl_optimization_restore.
10674 * c-opts.c (c_common_handle_option): Pass &global_options to
10675 handle_generated_option.
10676 * c-pragma.c (handle_pragma_diagnostic): Use option_flag_var.
10677 (handle_pragma_pop_options, handle_pragma_reset_options): Pass
10678 &global_options to cl_optimization_restore.
10679
10680 2010-09-30 Nicola Pero <nicola.pero@meta-innovation.com>
10681
10682 * c-lex.c (c_lex_with_flags): Updated comments for CPP_AT_NAME
10683 Objective-C/Objective-C++ keywords.
10684
10685 2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
10686
10687 Merge from 'apple/trunk' branch on FSF servers.
10688
10689 2005-10-04 Fariborz Jahanian <fjahanian@apple.com>
10690
10691 Radar 4281748
10692 * c-common.h (objc_check_global_decl): New declaration.
10693 * stub-objc.c (objc_check_global_decl): New stub.
10694
10695 2010-09-29 Joseph Myers <joseph@codesourcery.com>
10696
10697 * c.opt: Don't use VarExists.
10698
10699 2010-09-29 Joseph Myers <joseph@codesourcery.com>
10700
10701 * c-common.c (c_cpp_error): Update names of diagnostic_context
10702 members.
10703 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): Update names of
10704 cl_optimization members.
10705 * c-opts.c (warning_as_error_callback, c_common_handle_option,
10706 sanitize_cpp_opts, finish_options): Update names of cpp_options
10707 members.
10708
10709 2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
10710
10711 * c-common.h (OBJC_IS_CXX_KEYWORD): New macro. Updated comments.
10712 (objc_is_reserved_word): Removed.
10713 * c-common.c: Updated comments.
10714 * c-lex.c (c_lex_with_flags): Use OBJC_IS_CXX_KEYWORD instead of
10715 objc_is_reserved_word.
10716 * stub-objc.c (objc_is_reserved_word): Removed.
10717
10718 2010-09-28 Iain Sandoe <iains@gcc.gnu.org>
10719
10720 * c-common.h (objc_add_method_declaration): Adjust prototype to
10721 include attributes.
10722 (objc_start_method_definition): Likewise.
10723 (objc_build_keyword_decl): Likewise.
10724 * stub-objc.c:(objc_add_method_declaration): Handle attributes.
10725 (objc_start_method_definition): Likewise.
10726 (objc_build_keyword_decl): Likewise.
10727
10728 2010-09-28 Iain Sandoe <iains@gcc.gnu.org>
10729
10730 * c-common.h (objc_start_class_interface): Adjust prototype.
10731 (objc_start_category_interface): Likewise.
10732 (objc_start_protocol): Likewise.
10733 * stub-objc.c (objc_start_protocol): Adjust for extra argument.
10734 (objc_start_class_interface): Likewise.
10735 (objc_start_category_interface): Likewise.
10736
10737 2010-09-27 Ian Lance Taylor <iant@google.com>
10738
10739 * c-common.c (c_common_attribute_table): Add no_split_stack.
10740 (handle_no_split_stack_attribute): New static function.
10741
10742 2010-09-27 Nicola Pero <nicola.pero@meta-innovation.com>
10743
10744 Merge from 'apple/trunk' branch on FSF servers.
10745
10746 2005-12-15 Fariborz Jahanian <fjahanian@apple.com>
10747
10748 Radar 4229905
10749 * c-common.h (objc_have_common_type): New declaration.
10750 * stub-objc.c (objc_have_common_type): New stub.
10751
10752 2005-06-22 Ziemowit Laski <zlaski@apple.com>
10753
10754 Radar 4154928
10755 * c-common.h (objc_common_type): New prototype.
10756 * stub-objc.c (objc_common_type): New stub.
10757
10758 2010-09-24 Jan Hubicka <jh@suse.cz>
10759
10760 * c-common.c (handle_leaf_attribute): New function.
10761 (struct attribute_spec c_common_att): Add leaf.
10762
10763 2010-09-22 Joseph Myers <joseph@codesourcery.com>
10764
10765 * c.opt (-all-warnings, -ansi, -assert, -assert=, -comments,
10766 -comments-in-macros, -define-macro, -define-macro=, -dependencies,
10767 -dump, -dump=, -imacros, -imacros=, -include, -include=,
10768 -include-barrier, -include-directory, -include-directory=,
10769 -include-directory-after, -include-directory-after=,
10770 -include-prefix, -include-prefix=, -include-with-prefix,
10771 -include-with-prefix=, -include-with-prefix-after,
10772 -include-with-prefix-after=, -include-with-prefix-before,
10773 -include-with-prefix-before=, -no-integrated-cpp,
10774 -no-line-commands, -no-standard-includes, -no-warnings, -output,
10775 -output=, -pedantic, -pedantic-errors, -preprocess,
10776 -print-missing-file-dependencies, -trace-includes, -traditional,
10777 -traditional-cpp, -trigraphs, -undefine-macro, -undefine-macro=,
10778 -user-dependencies, -verbose, -write-dependencies,
10779 -write-user-dependencies, no-integrated-cpp, traditional): New.
10780
10781 2010-09-21 Nicola Pero <nicola.pero@meta-innovation.com>
10782
10783 PR objc/23710
10784 * c-common.h (objc_start_method_definition): Return bool instead
10785 of void.
10786 * stub-objc.c (objc_start_method_definition): Return bool instead
10787 of void.
10788
10789 2010-09-21 Nicola Pero <nicola.pero@meta-innovation.com>
10790
10791 PR objc/25965
10792 * c-common.h (objc_get_interface_ivars): New declaration.
10793 * stub-objc.c (objc_get_interface_ivars): New stub.
10794
10795 2010-09-15 Ian Lance Taylor <iant@google.com>
10796
10797 * c-common.c (parse_optimize_options): Do not capitalize warning
10798 messages. Remove period at end of warning message.
10799
10800 2010-09-09 Nathan Sidwell <nathan@codesourcery.com>
10801
10802 * c-common.c (handle_alias_ifunc_attribute): New, broken out of ...
10803 (handle_alias_attribute): ... here.
10804 (handle_ifunc_attribute): New.
10805
10806 2010-09-06 Mark Mitchell <mark@codesourcery.com>
10807
10808 * c-common.h (do_warn_double_promotion): Declare.
10809 * c-common.c (do_warn_double_promotion): Define.
10810
10811 2010-09-05 Mark Mitchell <mark@codesourcery.com>
10812
10813 * c.opt (Wdouble-promotion): New.
10814
10815 2010-09-02 Joseph Myers <joseph@codesourcery.com>
10816
10817 * c.opt (falt-external-templates, fhuge-objects, fvtable-gc,
10818 fvtable-thunks, fxref): Mark no longer supported in help text.
10819
10820 2010-09-02 Joseph Myers <joseph@codesourcery.com>
10821
10822 * c.opt (Wimport, fall-virtual, falt-external-templates,
10823 fdefault-inline, fenum-int-equiv, fexternal-templates,
10824 fguiding-decls, fhonor-std, fhuge-objects, flabels-ok,
10825 fname-mangling-version-, fnew-abi, fnonnull-objects,
10826 foptional-diags, fsquangle, fstrict-prototype, fthis-is-variable,
10827 fvtable-gc, fvtable-thunks, fxref): Mark with Ignore and Warn as
10828 applicable.
10829 (fhandle-exceptions): Mark with Alias and Warn.
10830 * c-opts.c (c_common_handle_option): Don't handle options marked
10831 as ignored.
10832
10833 2010-09-02 Joseph Myers <joseph@codesourcery.com>
10834
10835 * c.opt (Wcomments, Werror-implicit-function-declaration,
10836 ftemplate-depth-, std=c89, std=c9x, std=gnu89, std=gnu9x,
10837 std=iso9899:1990, std=iso9899:1999, std=iso9899:199x): Mark as
10838 aliases.
10839 * c-common.c (option_codes): Use OPT_Wcomment instead of
10840 OPT_Wcomments.
10841 * c-opts.c (warning_as_error_callback, c_common_handle_option):
10842 Don't handle options marked as aliases.
10843
10844 2010-08-25 Richard Guenther <rguenther@suse.de>
10845
10846 * c-common.c (c_common_get_alias_set): Remove special
10847 handling for pointers.
10848
10849 2010-08-20 Nathan Froyd <froydnj@codesourcery.com>
10850
10851 * c-common.c: Use FOR_EACH_VEC_ELT.
10852 * c-gimplify.c: Likewise.
10853 * c-pragma.c: Likewise.
10854
10855 2010-08-16 Joseph Myers <joseph@codesourcery.com>
10856
10857 * c.opt (MDX): Change back to MD. Mark NoDriverArg instead of
10858 RejectDriver.
10859 (MMDX): Change back to MMD. Mark NoDriverArg instead of
10860 RejectDriver.
10861 * c-opts.c (c_common_handle_option): Use OPT_MD and OPT_MMD
10862 instead of OPT_MDX and OPT_MMDX.
10863
10864 2010-08-16 Joseph Myers <joseph@codesourcery.com>
10865
10866 * c.opt (MDX, MMDX, lang-asm): Mark RejectDriver.
10867
10868 2010-08-12 Joseph Myers <joseph@codesourcery.com>
10869
10870 * c.opt (MD, MMD): Change to MDX and MMDX.
10871 * c-opts.c (c_common_handle_option): Use OPT_MMD and OPT_MMDX.
10872
10873 2010-08-11 Joseph Myers <joseph@codesourcery.com>
10874
10875 * c-opts.c (c_common_handle_option): Call handle_generated_option
10876 instead of handle_option.
10877
10878 2010-08-08 Nathan Froyd <froydnj@codesourcery.com>
10879
10880 * c-pragma.c (add_to_renaming_pragma_list): Fix call to VEC_safe_push.
10881 (maybe_apply_renaming_pragma): Delete unneeded declarations.
10882
10883 2010-08-08 Nathan Froyd <froydnj@codesourcery.com>
10884
10885 * c-pragma.c (pending_redefinition): Declare. Declare a VEC of it.
10886 (pending_redefine_extname): Change type to a VEC.
10887 (add_to_renaming_pragma_list): Update for new type of
10888 pending_redefine_extname.
10889 (maybe_apply_renaming_pragma): Likewise.
10890
10891 2010-08-04 Arnaud Charlet <charlet@adacore.com>
10892
10893 * c-ada-spec.c (dump_ada_template): Mark underlying instance type as
10894 visited.
10895 (dump_generic_ada_node): Code clean up. Use TREE_VISITED flag to
10896 decide whether a type has already been declared/seen.
10897 Do not go to the original type.
10898 (dump_nested_types): New parameter forward.
10899 Generate forward declaration if needed and mark type as visited.
10900 (print_ada_declaration): Call dump_nested_types if not already done.
10901 Mark types as visited.
10902
10903 2010-08-03 Joseph Myers <joseph@codesourcery.com>
10904
10905 * c.opt (-print-pch-checksum): Remove option.
10906 * c-opts.c (c_common_handle_option): Don't handle
10907 OPT_print_pch_checksum.
10908
10909 2010-07-27 Joseph Myers <joseph@codesourcery.com>
10910
10911 * c-common.h (c_common_handle_option): Update prototype and return
10912 value type.
10913 * c-opts.c (c_common_handle_option): Update prototype and return
10914 value type. Update calls to handle_option and
10915 enable_warning_as_error.
10916
10917 2010-07-27 Jakub Jelinek <jakub@redhat.com>
10918
10919 PR c/45079
10920 * c-pretty-print.c (pp_c_expression): Handle C_MAYBE_CONST_EXPR.
10921
10922 2010-07-27 Joseph Myers <joseph@codesourcery.com>
10923
10924 * c-common.h (c_common_missing_argument): Remove.
10925 * c-opts.c (c_common_missing_argument): Remove.
10926 * c.opt (A, D, F, I, MD, MMD, MQ, MT, U, fconstant-string-class=,
10927 idirafter, imacros, include, isysroot, isystem, iquote): Add
10928 MissingArgError.
10929 * c-objc-common.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
10930
10931 2010-07-27 Joseph Myers <joseph@codesourcery.com>
10932
10933 * c-common.h (c_common_option_lang_mask,
10934 c_common_initialize_diagnostics, c_common_complain_wrong_lang_p):
10935 New.
10936 (c_common_init_options): Update prototype.
10937 * c-opts.c (c_common_option_lang_mask): New.
10938 (c_common_initialize_diagnostics): Split out of
10939 c_common_init_options.
10940 (accept_all_c_family_options, c_common_complain_wrong_lang_p):
10941 New.
10942 (c_common_init_options): Update prototype. Use decoded options in
10943 search for -lang-asm.
10944
10945 2010-07-15 Nathan Froyd <froydnj@codesourcery.com>
10946
10947 * c-common.c: Carefully replace TREE_CHAIN with DECL_CHAIN.
10948 * c-format.c: Likewise.
10949
10950 2010-07-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
10951
10952 * c-common.h: Include diagnostic-core.h. Error if already
10953 included.
10954 * c-semantics.c: Do not define GCC_DIAG_STYLE here.
10955
10956 2010-07-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
10957
10958 * c-common.c (IN_GCC_FRONTEND): Do not undef.
10959 Do not include expr.h
10960 (vector_mode_valid_p): Move here.
10961
10962 2010-06-21 DJ Delorie <dj@redhat.com>
10963
10964 * c-pragma.c (handle_pragma_diagnostic): Add push/pop,
10965 allow these pragmas anywhere.
10966
10967 2010-06-14 Jakub Jelinek <jakub@redhat.com>
10968
10969 PR bootstrap/44509
10970 * c-cppbuiltin.c: Include gt-c-family-c-cppbuiltin.h.
10971 (lazy_hex_fp_values, lazy_hex_fp_value_count): Add GTY(()) markers.
10972 (lazy_hex_fp_value, builtin_define_with_hex_fp_value): Use
10973 ggc_strdup instead of xstrdup.
10974
10975 2010-06-10 Jakub Jelinek <jakub@redhat.com>
10976
10977 * c-cppbuiltin.c: Include cpp-id-data.h.
10978 (lazy_hex_fp_values, lazy_hex_fp_value_count): New variables.
10979 (lazy_hex_fp_value): New function.
10980 (builtin_define_with_hex_fp_value): Provide definitions lazily.
10981
10982 2010-06-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
10983
10984 * c-gimplify.c: Do not include tree-flow.h
10985
10986 2010-06-29 Joern Rennecke <joern.rennecke@embecosm.com>
10987
10988 PR other/44034
10989 * c-common.c: Rename targetm member:
10990 targetm.enum_va_list -> targetm.enum_va_list_p
10991
10992 2010-06-28 Anatoly Sokolov <aesok@post.ru>
10993
10994 * c-common.c (shorten_compare): Adjust call to force_fit_type_double.
10995
10996 2010-06-28 Steven Bosscher <steven@gcc.gnu.org>
10997
10998 * c-cppbuiltin.c: Do not include except.h.
10999
11000 2010-06-24 Andi Kleen <ak@linux.intel.com>
11001
11002 * c-common.c (warn_for_omitted_condop): New.
11003 * c-common.h (warn_for_omitted_condop): Add prototype.
11004
11005 2010-06-21 Joseph Myers <joseph@codesourcery.com>
11006
11007 * c.opt (lang-objc): Remove.
11008 * c-opts.c (c_common_handle_option): Don't handle OPT_lang_objc.
11009
11010 2010-06-21 Joern Rennecke <joern.rennecke@embecosm.com>
11011
11012 * c-opts.c: Include "tm_p.h".
11013
11014 2010-06-20 Joseph Myers <joseph@codesourcery.com>
11015
11016 * c-common.c (parse_optimize_options): Update call to
11017 decode_options.
11018
11019 2010-06-18 Nathan Froyd <froydnj@codesourcery.com>
11020
11021 * c-common.c (record_types_used_by_current_var_decl): Adjust for
11022 new type of types_used_by_cur_var_decl.
11023
11024 2010-06-17 Joern Rennecke <joern.rennecke@embecosm.com>
11025
11026 PR bootstrap/44512
11027 * c-cppbuiltin.c (builtin_define_with_hex_fp_value): Add cast
11028 for C++ standard compliance.
11029
11030 2010-06-16 Jason Merrill <jason@redhat.com>
11031
11032 * c.opt: Add -Wnoexcept.
11033
11034 2010-06-16 Richard Guenther <rguenther@suse.de>
11035
11036 PR c/44555
11037 * c-common.c (c_common_truthvalue_conversion): Remove
11038 premature and wrong optimization concering ADDR_EXPRs.
11039
11040 2010-06-15 Arnaud Charlet <charlet@adacore.com>
11041
11042 * c-ada-spec.c (dump_sloc): Remove column info.
11043 (is_simple_enum): New function.
11044 (dump_generic_ada_node, print_ada_declaration): Map C enum types to Ada
11045 enum types when relevant.
11046
11047 2010-06-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
11048
11049 * c-common.c (conversion_warning): Warn at expression
11050 location.
11051
11052 2010-06-10 Joseph Myers <joseph@codesourcery.com>
11053
11054 * c-opts.c (c_common_handle_option): Don't handle
11055 OPT_fshow_column.
11056
11057 2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
11058
11059 * c-pragma.c (push_alignment): Use typed GC allocation.
11060 (handle_pragma_push_options): Likewise.
11061
11062 * c-common.c (parse_optimize_options): Likewise.
11063
11064 * c-common.h (struct sorted_fields_type): Add variable_size GTY
11065 option.
11066
11067 2010-06-07 Joseph Myers <joseph@codesourcery.com>
11068
11069 * c-common.c (flag_preprocess_only, flag_undef, flag_no_builtin,
11070 flag_no_nonansi_builtin, flag_short_double, flag_short_wchar,
11071 flag_lax_vector_conversions, flag_ms_extensions, flag_no_asm,
11072 flag_signed_bitfields, warn_strict_null_sentinel,
11073 flag_nil_receivers, flag_zero_link, flag_replace_objc_classes,
11074 flag_gen_declaration, flag_no_gnu_keywords,
11075 flag_implement_inlines, flag_implicit_templates,
11076 flag_implicit_inline_templates, flag_optional_diags,
11077 flag_elide_constructors, flag_default_inline, flag_rtti,
11078 flag_conserve_space, flag_access_control, flag_check_new,
11079 flag_new_for_scope, flag_weak, flag_working_directory,
11080 flag_use_cxa_atexit, flag_use_cxa_get_exception_ptr,
11081 flag_enforce_eh_specs, flag_threadsafe_statics,
11082 flag_pretty_templates): Remove.
11083 * c-common.h (flag_preprocess_only, flag_nil_receivers,
11084 flag_objc_exceptions, flag_objc_sjlj_exceptions, flag_zero_link,
11085 flag_replace_objc_classes, flag_undef, flag_no_builtin,
11086 flag_no_nonansi_builtin, flag_short_double, flag_short_wchar,
11087 flag_lax_vector_conversions, flag_ms_extensions, flag_no_asm,
11088 flag_const_strings, flag_signed_bitfields, flag_gen_declaration,
11089 flag_no_gnu_keywords, flag_implement_inlines,
11090 flag_implicit_templates, flag_implicit_inline_templates,
11091 flag_optional_diags, flag_elide_constructors, flag_default_inline,
11092 flag_rtti, flag_conserve_space, flag_access_control,
11093 flag_check_new, flag_new_for_scope, flag_weak,
11094 flag_working_directory, flag_use_cxa_atexit,
11095 flag_use_cxa_get_exception_ptr, flag_enforce_eh_specs,
11096 flag_threadsafe_statics, flag_pretty_templates,
11097 warn_strict_null_sentinel): Remove.
11098 * c.opt (E, Wstrict-null-sentinel, faccess-control, fasm,
11099 fbuiltin, fcheck-new, fconserve-space, felide-constructors,
11100 fenforce-eh-specs, ffor-scope, fgnu-keywords, fimplement-inlines,
11101 fimplicit-inline-templates, fimplicit-templates,
11102 flax-vector-conversions, fms-extensions, fnil-receivers,
11103 fnonansi-builtins, fpretty-templates, freplace-objc-classes,
11104 frtti, fshort-double, fshort-enums, fshort-wchar,
11105 fsigned-bitfields, fsigned-char, fstats, fthreadsafe-statics,
11106 funsigned-bitfields, funsigned-char, fuse-cxa-atexit,
11107 fuse-cxa-get-exception-ptr, fweak, fworking-directory, fzero-link,
11108 gen-decls, undef): Use Var.
11109 (fdefault-inline, foptional-diags): Document as doing nothing.
11110 * c-opts.c (c_common_handle_option): Remove cases for options now
11111 using Var. Mark ignored options as such.
11112
11113 2010-06-05 Steven Bosscher <steven@gcc.gnu.org>
11114
11115 * c-common.c: Moved to here from parent directory.
11116 * c-common.def: Likewise.
11117 * c-common.h: Likewise.
11118 * c-cppbuiltin.c: Likewise.
11119 * c-dump.c: Likewise.
11120 * c-format.c: Likewise.
11121 * c-format.h : Likewise.
11122 * c-gimplify.c: Likewise.
11123 * c-lex.c: Likewise.
11124 * c-omp.c: Likewise.
11125 * c.opt: Likewise.
11126 * c-opts.c: Likewise.
11127 * c-pch.c: Likewise.
11128 * c-ppoutput.c: Likewise.
11129 * c-pragma.c: Likewise.
11130 * c-pragma.h: Likewise.
11131 * c-pretty-print.c: Likewise.
11132 * c-pretty-print.h: Likewise.
11133 * c-semantics.c: Likewise.
11134 * stub-objc.c: Likewise.
11135
11136 * c-common.c: Include gt-c-family-c-common.h.
11137 * c-pragma.c: Include gt-c-family-c-pragma.h.
11138 \f
11139 Copyright (C) 2010-2020 Free Software Foundation, Inc.
11140
11141 Copying and distribution of this file, with or without modification,
11142 are permitted in any medium without royalty provided the copyright
11143 notice and this notice are preserved.