OSDN Git Service

PR rtl-optimization/323
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / parity-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler "setnp" } } */
4
5 int foo(unsigned int x)
6 {
7   return __builtin_parity(x);
8 }