Improve comment
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/library/aesce.c b/library/aesce.c
index 1f3c83b..c3aae85 100644
--- a/library/aesce.c
+++ b/library/aesce.c
@@ -114,8 +114,7 @@
unsigned char *keys,
int rounds)
{
- /* Assume either 10, 12 or 14 rounds.
- * Skip 4 or 2 rounds, if doing 10 or 12 rounds */
+ /* 10, 12 or 14 rounds. Unroll loop. */
if (rounds == 10) {
goto rounds_10;
}
@@ -177,8 +176,7 @@
unsigned char *keys,
int rounds)
{
- /* Assume either 10, 12 or 14 rounds.
- * Skip 4 or 2 rounds, if doing 10 or 12 rounds */
+ /* 10, 12 or 14 rounds. Unroll loop. */
if (rounds == 10) {
goto rounds_10;
}