[llvm-branch-commits] [clang] [Clang] Add pointer field protection feature. (PR #172119)

Oliver Hunt via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Dec 20 23:33:59 PST 2025


================
@@ -4761,6 +4762,36 @@ void CodeGenModule::emitMultiVersionFunctions() {
     emitMultiVersionFunctions();
 }
 
+llvm::GlobalValue *
+CodeGenModule::getPFPDeactivationSymbol(const FieldDecl *FD) {
+  std::string DSName = "__pfp_ds_" + getPFPFieldName(FD);
----------------
ojhunt wrote:

I think having this constant declared somewhere rather than simply being included inline

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


More information about the llvm-branch-commits mailing list