aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/cmov5.c
blob: 112a9933bbca1255f6d114b2c0b6df4631558291 (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 "sbb" } } */

int
t(float a, float b)
{
	return a<=b?0:-1;
}