more formatting changes
authorJacob Lifshay <programmerjake@gmail.com>
Thu, 13 Apr 2023 01:45:49 +0000 (18:45 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 13 Apr 2023 01:45:49 +0000 (18:45 -0700)
openpower/sv/rfc/ls004.mdwn

index 58f18005071eda2e37b0eabdb4fb6dae5b3a9daa..9141006617ea6f2e932ed4ed4b0f20823807f61e 100644 (file)
@@ -70,13 +70,13 @@ add shift-and-add.  Replaces a pair of explicit instructions in hot-loops.
 
 1. `shadd` and `shadduw` operate on unsigned integers.
 2. `shadduw` is intended for performing address offsets,
-   as the second operand is constrained to lower 32-bits
-   and zero-extended.
+    as the second operand is constrained to lower 32-bits
+    and zero-extended.
 3. Both are 2-in 1-out instructions.
 4. shift-add operations are present in both x86 and aarch64,
-  since they are useful for both general arithmetic and for
-  computing addresses even when not immediately followed
-  with a load/store.
+    since they are useful for both general arithmetic and for
+    computing addresses even when not immediately followed
+    with a load/store.
 
 TODO: signed 32-bit shift-and-add should be added, this needs to be addressed
 before submitting the RFC: <https://bugs.libre-soc.org/show_bug.cgi?id=996>