Re: [PATCH v2 2/7] target/arm: Implement v8.3 QARMA3 PAC cipher

2023-02-22 Thread Richard Henderson
On 2/22/23 09:35, Aaron Lindsay wrote: -workingval = pac_sub(workingval); +if (isqarma3) +workingval = pac_sub1(workingval); +else +workingval = pac_sub(workingval); Braces required for all if+else. Multiple instances. Otherwise, Reviewed-by: Ri

[PATCH v2 2/7] target/arm: Implement v8.3 QARMA3 PAC cipher

2023-02-22 Thread Aaron Lindsay
Signed-off-by: Aaron Lindsay Reviewed-by: Peter Maydell --- target/arm/pauth_helper.c | 50 +++ 1 file changed, 40 insertions(+), 10 deletions(-) diff --git a/target/arm/pauth_helper.c b/target/arm/pauth_helper.c index e5206453f6..f525ef7fad 100644 --- a/targ