From 8805e2740ae6beeb1b2bf36d99833d07c962a2de Mon Sep 17 00:00:00 2001 From: lkcl Date: Sun, 31 Jul 2022 15:18:03 +0100 Subject: [PATCH] --- openpower/sv/vector_ops.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openpower/sv/vector_ops.mdwn b/openpower/sv/vector_ops.mdwn index 310767b0d..67d95d4df 100644 --- a/openpower/sv/vector_ops.mdwn +++ b/openpower/sv/vector_ops.mdwn @@ -47,9 +47,9 @@ BM2-Form The patterns within the pseudocode for AMD TBM and x86 BMI1 are as follows: -* first pattern A: `x / ~x` -* second pattern B: `| / & / ^` -* third pattern C: `x+1 / x-1 / ~(x+1) / (~x)+1` +* first pattern A: two options `x` or `~x` +* second pattern B: three options `|` `&` or `^` +* third pattern C: four options `x+1`, `x-1`, `~(x+1)` or `(~x)+1` Thus it makes sense to create a single instruction that covers all of these. A crucial addition that is essential -- 2.30.2