diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-11-27 19:36:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-11-27 19:36:23 +0100 |
commit | 0b13ab66f43fc1a9437361cfcd33b485422eb0ae (patch) | |
tree | 0a16cfc26d5910d6cb047aa476187f5d74c40f7b | |
parent | f92ae1dc4bc00e352e683b826609efa5e1e22708 (diff) | |
download | busybox-w32-0b13ab66f43fc1a9437361cfcd33b485422eb0ae.tar.gz busybox-w32-0b13ab66f43fc1a9437361cfcd33b485422eb0ae.tar.bz2 busybox-w32-0b13ab66f43fc1a9437361cfcd33b485422eb0ae.zip |
tls: P256: trivial x86-64 fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/tls_sp_c32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c index 3452b08b9..4c8f08d4e 100644 --- a/networking/tls_sp_c32.c +++ b/networking/tls_sp_c32.c | |||
@@ -500,7 +500,7 @@ static void sp_256to512_mul_8(sp_digit* r, const sp_digit* a, const sp_digit* b) | |||
500 | #elif ALLOW_ASM && defined(__GNUC__) && defined(__x86_64__) | 500 | #elif ALLOW_ASM && defined(__GNUC__) && defined(__x86_64__) |
501 | const uint64_t* aa = (const void*)a; | 501 | const uint64_t* aa = (const void*)a; |
502 | const uint64_t* bb = (const void*)b; | 502 | const uint64_t* bb = (const void*)b; |
503 | const uint64_t* rr = (const void*)r; | 503 | uint64_t* rr = (void*)r; |
504 | int k; | 504 | int k; |
505 | uint64_t accl; | 505 | uint64_t accl; |
506 | uint64_t acch; | 506 | uint64_t acch; |