PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-condcmpconv-2.c
blob5d3ef4a1e604df6790ff1d39a37cf9eb70c2df4e
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fdump-tree-ifcvt" } */
4 int foo (short a[], int x)
6 unsigned int i;
7 for (i = 0; i < 1000; i++)
9 x = a[i];
10 a[i] = (short)(x <= 0 ? 0 : x);
11 } return x;
15 /* { dg-final { scan-tree-dump " = MAX_EXPR <" "ifcvt" } } */