]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/fold-condcmpconv-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / fold-condcmpconv-2.c
CommitLineData
b5481987
BC
1/* { dg-do compile } */
2/* { dg-options "-O3 -fdump-tree-ifcvt" } */
3
4int foo (short a[], int x)
5{
6 unsigned int i;
7 for (i = 0; i < 1000; i++)
8 {
9 x = a[i];
10 a[i] = (short)(x <= 0 ? 0 : x);
11 } return x;
12}
13
14
15/* { dg-final { scan-tree-dump " = MAX_EXPR <" "ifcvt" } } */