aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/i386-cmov3.c
blob: 6ef2675297d1ce33959896b25db3f83c113c02da (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -march=k8" } */
/* { dg-final { scan-assembler "cmov" } } */

/* This conditional move is fastest to be done using cmov.  */
t(int a, int b)
{
  return (a<=b?5:-5);
}