From c64280a2d71f6e88835787b2121857f063af7029 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Tue, 23 Jan 2024 10:03:22 +0000 Subject: [PATCH] Fix comment typo Signed-off-by: Dave Rodgman --- library/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/common.h b/library/common.h index 937c80284c..3936ffdfe1 100644 --- a/library/common.h +++ b/library/common.h @@ -280,7 +280,7 @@ static inline void mbedtls_xor_no_simd(unsigned char *r, } #if defined(__IAR_SYSTEMS_ICC__) /* 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 * constant, and is a very small perf regression if n is not a compile-time constant. */ if (n % 8 == 0) {