[llvm] [AArch64][PAC][GISel] Add missing clobbering info to LOADgotAUTH (PR #157433)

Anatoly Trosinenko via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 8 12:17:37 PDT 2025


================
@@ -2914,10 +2914,15 @@ bool AArch64InstructionSelector::select(MachineInstr &I) {
     }
 
     if (OpFlags & AArch64II::MO_GOT) {
-      I.setDesc(TII.get(MF.getInfo<AArch64FunctionInfo>()->hasELFSignedGOT()
-                            ? AArch64::LOADgotAUTH
-                            : AArch64::LOADgot));
+      bool GOTIsSigned = MF.getInfo<AArch64FunctionInfo>()->hasELFSignedGOT();
----------------
atrosinenko wrote:

Sounds reasonable, thanks!

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


More information about the llvm-commits mailing list