PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / cmov2.c
blobd5fa16b359a035e22c2f1c8d0479de2cd5b5ac35
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 int
7 t(unsigned int a, unsigned int b)
9 return (a<=b?5:-5);