i386.md (paritydi2, paritysi2): New expanders.
[gcc.git] / gcc / testsuite / gcc.target / i386 / parity-2.c
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler "setnp" } } */
4
5 int foo(unsigned long long int x)
6 {
7 return __builtin_parityll(x);
8 }