Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-5.c
blob157ab87a9e81903d625990b4f6130e7f25eefd83
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-tree-ccp -fno-tree-forwprop -fdump-tree-fre1-details" } */
4 /* From PR19792. */
6 int
7 bar (unsigned int t)
9 int a = t;
10 return a == t;
13 /* { dg-final { scan-tree-dump "Replaced \\\(unsigned int\\\) a_.*with t_" "fre1" } } */