IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / compare7.c
blobe2fbc04bfc2cd716f969399943dab91f97a2110b
1 /* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
2 See also g++.dg/warn/compare1.C. */
4 /* { dg-do compile } */
5 /* { dg-options "-Wall" } */
7 int f(unsigned a, int b)
9 return a < b; /* { dg-bogus "signed and unsigned" } */