[clang] [lldb] [clang]: support std::meta::info for primitive types (PR #190356)
Shafik Yaghmour via cfe-commits
cfe-commits at lists.llvm.org
Fri May 15 19:18:22 PDT 2026
================
@@ -6935,6 +6956,26 @@ void CXXNameMangler::mangleValueInTemplateArg(QualType T, const APValue &V,
break;
}
+ case APValue::Reflection: {
+ // https://github.com/itanium-cxx-abi/cxx-abi/issues/208
+ Out << "LDm";
----------------
shafik wrote:
This looks like code duplication. Can we do something similar to `MangleNullPointer`? and factor out this code?
https://github.com/llvm/llvm-project/pull/190356
More information about the cfe-commits
mailing list