commit | f4ee5d4c94d834e3814ecafeac4ff1bde22ae047 | [log] [tgz] |
---|---|---|
author | Dave Rodgman <dave.rodgman@arm.com> | Mon Oct 09 13:42:38 2023 +0100 |
committer | Dave Rodgman <dave.rodgman@arm.com> | Wed Oct 25 09:06:24 2023 +0100 |
tree | b412870ee71a7a3cbd8ff88db98766397392612d | |
parent | 2c25bdb7cfbb74b69cda03e8e60ebabaeb987c92 [diff] |
Code style Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/library/aesce.c b/library/aesce.c index 8c1db91..4c85941 100644 --- a/library/aesce.c +++ b/library/aesce.c
@@ -104,7 +104,7 @@ static inline poly128_t vmull_p64(poly64_t a, poly64_t b) { poly128_t r; - asm ("vmull.p64 %[r], %[a], %[b]": [r] "=w" (r) : [a] "w" (a), [b] "w" (b) :); + asm ("vmull.p64 %[r], %[a], %[b]" : [r] "=w" (r) : [a] "w" (a), [b] "w" (b) :); return r; }