[Bug target/65369] [5 Regression] nettle test failure on powerpc64le-linux-gnu when built with -O3
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Mar 12 15:42:00 GMT 2015
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65369
--- Comment #21 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Looking at https://git.lysator.liu.se/nettle/nettle/blob/master/md4.c I see
there:
bit_count = (ctx->count << 9) | (ctx->index << 3);
data[MD4_DATA_LENGTH-2] = bit_count;
data[MD4_DATA_LENGTH-1] = bit_count >> 32;
and thus it initializes everything.
More information about the Gcc-bugs
mailing list