From: lkcl <lkcl@web>
Date: Fri, 19 Feb 2021 19:53:17 +0000 (+0000)
Subject: (no commit message)
X-Git-Tag: convert-csv-opcode-to-binary~146
X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e6ac448115ba14899965c5569998ad3c777781a9;p=libreriscv.git

---

diff --git a/openpower/sv/vector_ops.mdwn b/openpower/sv/vector_ops.mdwn
index 6d0f7ffbe..4eae60114 100644
--- a/openpower/sv/vector_ops.mdwn
+++ b/openpower/sv/vector_ops.mdwn
@@ -278,7 +278,7 @@ Stackoverflow algorithm `((P|G)+G)^P` works on the cumulated bits of P and G fro
     Get G[id] = C[id] > radix -1
     Get P[id] = C[id] == radix-1
     Join all P[id] together, likewise G[id]
-    Compute newC = ((P|G)+G)^P << 1
+    Compute newC = ((P|G)+G)^P
     result[id] = (C[id] + newC[id]) % radix
 ```