[clang] [PAC] Add support for __ptrauth type qualifier (PR #100830)
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 20 08:03:22 PST 2025
================
@@ -2850,6 +2850,26 @@ void CXXNameMangler::mangleQualifiers(Qualifiers Quals, const DependentAddressSp
if (Quals.hasUnaligned())
mangleVendorQualifier("__unaligned");
+ // __ptrauth. Note that this is parameterized.
+ if (PointerAuthQualifier PtrAuth = Quals.getPointerAuth()) {
----------------
AaronBallman wrote:
We seem to be missing mangling for Microsoft; should we be using a vendor mangling there?
https://github.com/llvm/llvm-project/pull/100830
More information about the cfe-commits
mailing list