Re: [PATCH] libgcc: Fix __builtin_nested_func_ptr_{created,deleted} symbol versions [PR113402]

2024-01-16 Thread Richard Biener
On Tue, 16 Jan 2024, Jakub Jelinek wrote: > Hi! > > These symbols were exported at an incorrect symbol version, > the following patch fixes that. > > I believe we should also rename the symbols (__nested_func_ptr_* > or __gcc_nested_func_ptr_* or similar), __builtin_ in the name > doesn't look r

[PATCH] libgcc: Fix __builtin_nested_func_ptr_{created,deleted} symbol versions [PR113402]

2024-01-16 Thread Jakub Jelinek
Hi! These symbols were exported at an incorrect symbol version, the following patch fixes that. I believe we should also rename the symbols (__nested_func_ptr_* or __gcc_nested_func_ptr_* or similar), __builtin_ in the name doesn't look right, but that will need more changes to make it work. Boo