[Bug target/57777] Python module fails compilation with "-march=core-avx2 -O3"
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Tue Jul 2 17:41:00 GMT 2013
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57777
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase for -O3 -mavx2 -fpic:
void
foo (unsigned long *x, int *y)
{
static unsigned long b[2] = { 0x0UL, 0x9908b0dfUL };
int c;
for (c = 0; c < 512; c++)
x[c] = b[x[c] & 1UL];
}
More information about the Gcc-bugs
mailing list