2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / cmov2.c
blob2b7c696bb822562844f95606e468679b7511e425
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -march=k8" } */
3 /* { dg-final { scan-assembler "sbb" } } */
5 /* This conditional move is fastest to be done using sbb. */
6 t(unsigned int a, unsigned int b)
8 return (a<=b?5:-5);