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

unsigned long long foo (int a, unsigned b, unsigned  c)
{
  unsigned t = a ? b : c;
  return t;
}