Re: [PATCH 7/9] genemit: Add a generator struct

2025-05-16 Thread Jeff Law
On 5/16/25 11:22 AM, Richard Sandiford wrote: gen_exp now has quite a few arguments that need to be passed to each recursive call. This patch turns it and related routines into member functions of a new generator class, so that the shared information can be stored in member variables. This a

[PATCH 7/9] genemit: Add a generator struct

2025-05-16 Thread Richard Sandiford
gen_exp now has quite a few arguments that need to be passed to each recursive call. This patch turns it and related routines into member functions of a new generator class, so that the shared information can be stored in member variables. This also helps to make later patches less noisy. gcc/