Re: [PATCH] [cobol] move global data to symbol_table_init

2025-04-04 Thread Richard Biener
On Thu, 20 Mar 2025, Richard Biener wrote: > The following avoids early runtime initialization of cbl_field_t > objects which, when using tree to represent the current _Float128 > data, segfaults as tree data like float128_type_node is not yet > initialized. The solution is to move the global dat

Re: [PATCH] [cobol] move global data to symbol_table_init

2025-03-26 Thread Jakub Jelinek
On Fri, Mar 21, 2025 at 10:08:05AM +0100, Richard Biener wrote: > On Thu, 20 Mar 2025, Richard Biener wrote: > > > The following avoids early runtime initialization of cbl_field_t > > objects which, when using tree to represent the current _Float128 > > data, segfaults as tree data like float128_t

[PATCH] [cobol] move global data to symbol_table_init

2025-03-20 Thread Richard Biener
The following avoids early runtime initialization of cbl_field_t objects which, when using tree to represent the current _Float128 data, segfaults as tree data like float128_type_node is not yet initialized. The solution is to move the global data to symbol_table_init which is the only user and it