libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-parity-2.c
blob8c7acbfd15a141670bbb3b814072094f83171bc8
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int foo(unsigned int x)
6 return __builtin_parity(~x);
9 int fool(unsigned long x)
11 return __builtin_parityl(~x);
14 int fooll(unsigned long long x)
16 return __builtin_parityll(~x);
19 /* { dg-final { scan-tree-dump-times "~" 0 "optimized" } } */