aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/cmov10.c
blob: 9ba23b191fbd07e2d460ce9f3f14ad9e7a3dbd13 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-options "-O2 -dp" } */
/* { dg-final { scan-assembler-not "zero_extendsidi" } } */


void foo (unsigned long long *d, int a, unsigned int b, unsigned int c)
{
  *d = a ? b : c;
}