Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp116.c
blobd9d7b2394cd2d50299251a6b91a8639ced93d4ae
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-vrp1" } */
4 int
5 f (int m1, int m2, int c)
7 int d = m1 > m2;
8 int e = d * c;
9 return e ? m1 : m2;
12 /* { dg-final { scan-tree-dump-times "\\? c_\[0-9\]\\(D\\) : 0" 1 "vrp1" } } */