blob: 701268b5656055d6242dd4ff9d77fc4fc7e16ba4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
static inline unsigned
parity (unsigned x)
{
return (unsigned) __builtin_parity (x);
}
unsigned
f (unsigned rpoly)
{
return parity (rpoly & 1) ^ parity (rpoly & 6);
}