1 From 056fbee0d76491b5f19f5741e9bf9178c03de7dc Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
3 Date: Tue, 4 Aug 2020 13:12:49 +0300
4 Subject: [PATCH 2/4] arm64: Change adrp/add relocations to darwin style
7 mpn/arm64/invert_limb.asm | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
10 diff --git a/mpn/arm64/invert_limb.asm b/mpn/arm64/invert_limb.asm
11 index a94b0e961..bb876d97c 100644
12 --- a/mpn/arm64/invert_limb.asm
13 +++ b/mpn/arm64/invert_limb.asm
14 @@ -41,9 +41,9 @@ C Compiler generated, mildly edited. Could surely be further optimised.
16 PROLOGUE(mpn_invert_limb)
19 + adrp x1, approx_tab@PAGE
21 - add x1, x1, :lo12:approx_tab
22 + add x1, x1, approx_tab@PAGEOFF
27 2.24.3 (Apple Git-128)