From 1b1edc8be1b1a36360f90891d3315044261c990f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eymen=20=C3=9Cnay?= Date: Sun, 5 May 2024 21:02:01 +0300 Subject: [PATCH] Fix the typo in Operation Definition for R_ARM_REL32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R_ARM_REL32 relocation's operation is defined as ((S + A) | T) – P but an extra "|" is left in the current version. --- aaelf32/aaelf32.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aaelf32/aaelf32.rst b/aaelf32/aaelf32.rst index 85aba1a..976448d 100644 --- a/aaelf32/aaelf32.rst +++ b/aaelf32/aaelf32.rst @@ -1767,7 +1767,7 @@ The following nomenclature is used for the operation: +---------+----------------------------------+------------+---------------+----------------------------------------+ | 2 | :code:`R_ARM_ABS32` | Static | Data | :code:`(S + A) | T` | +---------+----------------------------------+------------+---------------+----------------------------------------+ - | 3 | :code:`R_ARM_REL32` | Static | Data | :code:`((S + A) | T) | – P` | + | 3 | :code:`R_ARM_REL32` | Static | Data | :code:`((S + A) | T) – P` | +---------+----------------------------------+------------+---------------+----------------------------------------+ | 4 | :code:`R_ARM_LDR_PC_G0` | Static | Arm | :code:`S + A – P` | +---------+----------------------------------+------------+---------------+----------------------------------------+