[Lldb-commits] [clang] [clang-tools-extra] [lldb] [c++20] P1907R1: Support for generalized non-type template arguments of scalar type. (PR #78041)
David Blaikie via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 24 09:00:15 PST 2024
================
@@ -5401,6 +5409,8 @@ std::string CGDebugInfo::GetName(const Decl *D, bool Qualified) const {
// feasible some day.
return TA.getAsIntegral().getBitWidth() <= 64 &&
IsReconstitutableType(TA.getIntegralType());
+ case TemplateArgument::StructuralValue:
+ return false;
----------------
dwblaikie wrote:
Sorry for the delays in the debug info review for this - it is on my list :/
https://github.com/llvm/llvm-project/pull/78041
More information about the lldb-commits
mailing list