diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-10-06 21:22:36 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-10-06 21:22:36 +0200 |
commit | 17e6fb06b3d36eae11575b226858e8474e2b46d3 (patch) | |
tree | 0962c062cc1f09726e5cb4464f4710d4a3a28979 /networking/tls_sp_c32.c | |
parent | 5e9c6170218826dded581b99dfd225b0c76c6c86 (diff) | |
download | busybox-w32-17e6fb06b3d36eae11575b226858e8474e2b46d3.tar.gz busybox-w32-17e6fb06b3d36eae11575b226858e8474e2b46d3.tar.bz2 busybox-w32-17e6fb06b3d36eae11575b226858e8474e2b46d3.zip |
tls: whitespace fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | networking/tls_sp_c32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c index b3828d817..4c0cd320b 100644 --- a/networking/tls_sp_c32.c +++ b/networking/tls_sp_c32.c | |||
@@ -375,9 +375,9 @@ static void sp_256_sub_8_p256_mod(sp_digit* r) | |||
375 | asm volatile ( | 375 | asm volatile ( |
376 | "\n addq $1, (%0)" // adding 1 is the same as subtracting ffffffffffffffff | 376 | "\n addq $1, (%0)" // adding 1 is the same as subtracting ffffffffffffffff |
377 | "\n cmc" // only carry bit needs inverting | 377 | "\n cmc" // only carry bit needs inverting |
378 | 378 | "\n" | |
379 | "\n sbbq %1, 1*8(%0)" // %1 holds 00000000ffffffff | 379 | "\n sbbq %1, 1*8(%0)" // %1 holds 00000000ffffffff |
380 | 380 | "\n" | |
381 | "\n sbbq $0, 2*8(%0)" | 381 | "\n sbbq $0, 2*8(%0)" |
382 | "\n" | 382 | "\n" |
383 | "\n movq 3*8(%0), %2" | 383 | "\n movq 3*8(%0), %2" |
@@ -473,7 +473,7 @@ static void sp_256_mul_8(sp_digit* r, const sp_digit* a, const sp_digit* b) | |||
473 | : "cc", "dx" | 473 | : "cc", "dx" |
474 | ); | 474 | ); |
475 | //////////////////////// | 475 | //////////////////////// |
476 | j--; | 476 | j--; |
477 | i++; | 477 | i++; |
478 | } while (i != 4 && i <= k); | 478 | } while (i != 4 && i <= k); |
479 | rr[k] = accl; | 479 | rr[k] = accl; |