Re: [PATCH] c++/modules: Stream additional fields for DECL_STRUCT_FUNCTION [PR113580]

2024-01-26 Thread Jason Merrill
On 1/26/24 10:49, Patrick Palka wrote: On Fri, 26 Jan 2024, Nathaniel Shead wrote: This patch just adds enough of the fields from 'function' to fix the ICE in the linked PR. I suppose there might be more fields from this type that should be propagated, but I don't know enough to find out which

Re: [PATCH] c++/modules: Stream additional fields for DECL_STRUCT_FUNCTION [PR113580]

2024-01-26 Thread Patrick Palka
On Fri, 26 Jan 2024, Nathaniel Shead wrote: > This patch just adds enough of the fields from 'function' to fix the ICE > in the linked PR. I suppose there might be more fields from this type > that should be propagated, but I don't know enough to find out which > they might be yet, since a lot of

[PATCH] c++/modules: Stream additional fields for DECL_STRUCT_FUNCTION [PR113580]

2024-01-26 Thread Nathaniel Shead
This patch just adds enough of the fields from 'function' to fix the ICE in the linked PR. I suppose there might be more fields from this type that should be propagated, but I don't know enough to find out which they might be yet, since a lot of them seem to be only set after gimplification. Boots