Skip to content

Commit

Permalink
Fix the typo in Operation Definition for R_ARM_REL32
Browse files Browse the repository at this point in the history
R_ARM_REL32 relocation's operation is defined as ((S + A) | T) – P but an extra "|" is left in the current version.
  • Loading branch information
eymay authored and smithp35 committed May 7, 2024
1 parent 7c2fbbd commit d4af6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aaelf32/aaelf32.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
+---------+----------------------------------+------------+---------------+----------------------------------------+
Expand Down

0 comments on commit d4af6f2

Please sign in to comment.