mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-24 19:43:32 +00:00
Fix comment typo
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
00b530e395
commit
c64280a2d7
@ -280,7 +280,7 @@ static inline void mbedtls_xor_no_simd(unsigned char *r,
|
|||||||
}
|
}
|
||||||
#if defined(__IAR_SYSTEMS_ICC__)
|
#if defined(__IAR_SYSTEMS_ICC__)
|
||||||
/* This if statement helps some compilers (e.g., IAR) optimise out the byte-by-byte tail case
|
/* This if statement helps some compilers (e.g., IAR) optimise out the byte-by-byte tail case
|
||||||
* where n is a constant multiple of 16.
|
* where n is a constant multiple of 8.
|
||||||
* For other compilers (e.g. recent gcc and clang) it makes no difference if n is a compile-time
|
* For other compilers (e.g. recent gcc and clang) it makes no difference if n is a compile-time
|
||||||
* constant, and is a very small perf regression if n is not a compile-time constant. */
|
* constant, and is a very small perf regression if n is not a compile-time constant. */
|
||||||
if (n % 8 == 0) {
|
if (n % 8 == 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user