blob: a2cf77ae5238f3db81a059da3426bc9f76ef1047 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -march=k8" } */
/* { dg-final { scan-assembler "cmov\[^3\]" } } */
/* This conditional move is fastest to be done using cmov. */
int
t(int a, int b)
{
return (a<=b?5:-5);
}