Manual formatting tweaks to Curve448 code
[openssl.git] / crypto / ec / curve448 / arch_x86_64 / f_impl.c
index a1c9dbd12259727680e592c831bc1e2177cd1388..86572f6da0e3a756b125bc734a132de4e3b5594f 100644 (file)
@@ -16,10 +16,8 @@ void gf_mul(gf_s * __restrict__ cs, const gf as, const gf bs)
 {
     const uint64_t *a = as->limb, *b = bs->limb;
     uint64_t *c = cs->limb;
 {
     const uint64_t *a = as->limb, *b = bs->limb;
     uint64_t *c = cs->limb;
-
     __uint128_t accum0 = 0, accum1 = 0, accum2;
     uint64_t mask = (1ull << 56) - 1;
     __uint128_t accum0 = 0, accum1 = 0, accum2;
     uint64_t mask = (1ull << 56) - 1;
-
     uint64_t aa[4] VECTOR_ALIGNED, bb[4] VECTOR_ALIGNED, bbb[4] VECTOR_ALIGNED;
 
     /* For some reason clang doesn't vectorize this without prompting? */
     uint64_t aa[4] VECTOR_ALIGNED, bb[4] VECTOR_ALIGNED, bbb[4] VECTOR_ALIGNED;
 
     /* For some reason clang doesn't vectorize this without prompting? */
@@ -202,10 +200,8 @@ void gf_sqr(gf_s * __restrict__ cs, const gf as)
 {
     const uint64_t *a = as->limb;
     uint64_t *c = cs->limb;
 {
     const uint64_t *a = as->limb;
     uint64_t *c = cs->limb;
-
     __uint128_t accum0 = 0, accum1 = 0, accum2;
     uint64_t mask = (1ull << 56) - 1;
     __uint128_t accum0 = 0, accum1 = 0, accum2;
     uint64_t mask = (1ull << 56) - 1;
-
     uint64_t aa[4] VECTOR_ALIGNED;
 
     /* For some reason clang doesn't vectorize this without prompting? */
     uint64_t aa[4] VECTOR_ALIGNED;
 
     /* For some reason clang doesn't vectorize this without prompting? */