PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr44481.c
blob701268b5656055d6242dd4ff9d77fc4fc7e16ba4
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 static inline unsigned
5 parity (unsigned x)
7 return (unsigned) __builtin_parity (x);
10 unsigned
11 f (unsigned rpoly)
13 return parity (rpoly & 1) ^ parity (rpoly & 6);