Re: [PATCH v3 4/6] c++: Update mangling of lambdas in expressions

2025-01-22 Thread Jason Merrill
On 1/6/25 7:23 AM, Nathaniel Shead wrote: https://github.com/itanium-cxx-abi/cxx-abi/pull/85 clarifies that mangling a lambda expression should use 'L' rather than "tl". This only affects C++20 (and later) so no ABI flag is given. OK. gcc/cp/ChangeLog: * mangle.cc (write_expression)

[PATCH v3 4/6] c++: Update mangling of lambdas in expressions

2025-01-06 Thread Nathaniel Shead
https://github.com/itanium-cxx-abi/cxx-abi/pull/85 clarifies that mangling a lambda expression should use 'L' rather than "tl". This only affects C++20 (and later) so no ABI flag is given. gcc/cp/ChangeLog: * mangle.cc (write_expression): Update mangling for lambdas. gcc/testsuite/Chang