aboutsummaryrefslogtreecommitdiff
path: root/gcc/c
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2025-01-15 00:17:24 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2025-01-15 00:17:24 +0000
commit3b3b3f886eb21feb6d0c5e069dff934ed6bfa5fe (patch)
treeab1d596d1792daa96c0a84e921afab47893ee831 /gcc/c
parent6e0b048fb5bc0809048ef8f487830ad26f4b87cf (diff)
downloadgcc-3b3b3f886eb21feb6d0c5e069dff934ed6bfa5fe.zip
gcc-3b3b3f886eb21feb6d0c5e069dff934ed6bfa5fe.tar.gz
gcc-3b3b3f886eb21feb6d0c5e069dff934ed6bfa5fe.tar.bz2
Daily bump.
Diffstat (limited to 'gcc/c')
-rw-r--r--gcc/c/ChangeLog29
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 4cfa62a..9a74713 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,32 @@
+2025-01-14 Sandra Loosemore <sloosemore@baylibre.com>
+ Kwok Cheung Yeung <kcy@codesourcery.com>
+ Sandra Loosemore <sandra@codesourcery.com>
+ Marcel Vollweiler <marcel@codesourcery.com>
+
+ PR middle-end/114596
+ PR middle-end/112779
+ PR middle-end/113904
+ * c-parser.cc (c_finish_omp_declare_variant): Update for changes
+ to omp-general.h interfaces.
+
+2025-01-14 David Malcolm <dmalcolm@redhat.com>
+
+ PR c/116871
+ * c-typeck.cc (pedwarn_permerror_init): Return bool for whether a
+ warning was emitted. Only call print_spelling if we warned.
+ (pedwarn_init): Return bool for whether a warning was emitted.
+ (permerror_init): Likewise.
+ (warning_init): Return bool for whether a
+ warning was emitted. Only call print_spelling if we warned.
+ (class pp_element_quoted_decl): New.
+ (maybe_inform_typedef_location): New.
+ (convert_for_assignment): For OPT_Wincompatible_pointer_types,
+ move auto_diagnostic_group to cover all cases. Use %e and
+ pp_element rather than %qT and tree to colorize the types.
+ Capture whether a warning was emitted, and, if it was,
+ show various notes: for a pointer to a function, show the
+ function decl, for typedef types, and show the decls.
+
2025-01-12 David Malcolm <dmalcolm@redhat.com>
PR c/118112