Re: [PATCH] ipa: Initialize/release global obstack in process_new_functions [PR116068]

2025-01-15 Thread Richard Biener
On Wed, 15 Jan 2025, Jakub Jelinek wrote: > Hi! > > Other spots in cgraphunit.cc already call bitmap_obstack_initialize (NULL); > before running a pass list and bitmap_obstack_release (NULL); after that, > while process_new_functions wasn't doing that and with the new r15-130 > bitmap_alloc check

Re: [PATCH] ipa: Initialize/release global obstack in process_new_functions [PR116068]

2025-01-15 Thread Jan Hubicka
> Hi! > > Other spots in cgraphunit.cc already call bitmap_obstack_initialize (NULL); > before running a pass list and bitmap_obstack_release (NULL); after that, > while process_new_functions wasn't doing that and with the new r15-130 > bitmap_alloc checking that results in ICE. > > Fixed thusly,

[PATCH] ipa: Initialize/release global obstack in process_new_functions [PR116068]

2025-01-15 Thread Jakub Jelinek
Hi! Other spots in cgraphunit.cc already call bitmap_obstack_initialize (NULL); before running a pass list and bitmap_obstack_release (NULL); after that, while process_new_functions wasn't doing that and with the new r15-130 bitmap_alloc checking that results in ICE. Fixed thusly, bootstrapped/re