[llvm-branch-commits] [llvm] CodeGen: Optionally emit PAuth relocations as IRELATIVE relocations. (PR #133533)
Peter Collingbourne via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Nov 25 22:24:52 PST 2025
https://github.com/pcc updated https://github.com/llvm/llvm-project/pull/133533
>From 725889f7dce14fc679c22e74024a21c2192ded5b Mon Sep 17 00:00:00 2001
From: Peter Collingbourne <pcc at google.com>
Date: Tue, 25 Nov 2025 22:24:38 -0800
Subject: [PATCH] Format
Created using spr 1.3.6-beta.1
---
llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp b/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
index 30f7ece68831d..3aa77bd47930f 100644
--- a/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+++ b/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
@@ -2330,7 +2330,8 @@ static void emitAddress(MCStreamer &Streamer, MCRegister Reg,
.addImm(0),
STI);
} else {
- auto *SymRef = MCSymbolRefExpr::create(Val.getAddSym(), Streamer.getContext());
+ auto *SymRef =
+ MCSymbolRefExpr::create(Val.getAddSym(), Streamer.getContext());
Streamer.emitInstruction(
MCInstBuilder(AArch64::ADRP)
.addReg(Reg)
More information about the llvm-branch-commits
mailing list