[clang] [PAC][clang] Fix ptrauth module flags behavior (PR #204226)
Jakub Chlanda via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 1 04:36:41 PDT 2026
================
@@ -1480,14 +1480,17 @@ void CodeGenModule::Release() {
if (!LangOpts.isSignReturnAddressWithAKey())
getModule().addModuleFlag(llvm::Module::Min,
"sign-return-address-with-bkey", 2);
-
- if (LangOpts.PointerAuthELFGOT)
- getModule().addModuleFlag(llvm::Module::Error, "ptrauth-elf-got", 1);
+ }
+ if (T.isAArch64()) {
+ getModule().addModuleFlag(
----------------
jchlanda wrote:
Should `"ptrauth-elf-got"` also be under `isOSLinux`?
https://github.com/llvm/llvm-project/pull/204226
More information about the cfe-commits
mailing list