Re: [C PATCH 2/6] c23: recursive type checking of tagged type

2023-11-07 Thread Joseph Myers
On Sat, 26 Aug 2023, Martin Uecker via Gcc-patches wrote: > Adapt the old and unused code for type checking for C23. > > gcc/c/: > * c-typeck.c (struct comptypes_data): Add anon_field flag. > (comptypes, comptypes_check_unum_int, > comptypes_check_different_types): Remove old

[C PATCH 2/6] c23: recursive type checking of tagged type

2023-08-26 Thread Martin Uecker via Gcc-patches
Adapt the old and unused code for type checking for C23. gcc/c/: * c-typeck.c (struct comptypes_data): Add anon_field flag. (comptypes, comptypes_check_unum_int, comptypes_check_different_types): Remove old cache. (tagged_tu_types_compatible_p): Rewrite. ---