[lldb] [clang-tools-extra] [clang] [c++20] P1907R1: Support for generalized non-type template arguments of scalar type. (PR #78041)

via cfe-commits cfe-commits at lists.llvm.org
Sun Jan 21 00:57:00 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;
----------------
cor3ntin wrote:

I don't think this is blocking either way, at worse we have suboptimal debugging experience for a new feature

https://github.com/llvm/llvm-project/pull/78041


More information about the cfe-commits mailing list