1 /* PR tree-optimization/112719 */
2 /* { dg-do compile } */
3 /* { dg-options "-O" } */
4 /* { dg-additional-options "-msse4" { target i?86-*-* x86_64-*-* } } */
7 foo (unsigned int a
, unsigned short b
)
9 return __builtin_popcountl (a
) + __builtin_popcountl (b
);
13 bar (unsigned int a
, unsigned short b
)
17 return __builtin_popcountll (a
) + __builtin_popcountll (b
);