Re: [PATCH v10 1/3] C++: Support clang compatible [[musttail]] (PR83324)

2024-07-23 Thread Jason Merrill
On 7/18/24 7:46 PM, Andi Kleen wrote: Updated patch with the !retval bug fix identified by Marek. OK. This patch implements a clang compatible [[musttail]] attribute for returns. musttail is useful as an alternative to computed goto for interpreters. With computed goto the interpreter f

Re: [PATCH v10 1/3] C++: Support clang compatible [[musttail]] (PR83324)

2024-07-18 Thread Andi Kleen
Updated patch with the !retval bug fix identified by Marek. This patch implements a clang compatible [[musttail]] attribute for returns. musttail is useful as an alternative to computed goto for interpreters. With computed goto the interpreter function usually ends up very big which causes pr