Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp16.c
blobd09f3aea46aa3eb4c501e215b4f5d01aa7c211f5
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-fre -fdump-tree-evrp" } */
5 extern void abort (void) __attribute__ ((__noreturn__));
6 struct rtx_def;
7 typedef struct rtx_def *rtx;
8 struct rtx_def
10 int code;
12 int
13 nonlocal_mentioned_p (rtx x)
15 int code = x->code;
16 if (code == 6 || code == 7)
17 if (code == 7)
18 if (code != 7)
19 abort ();
22 /* { dg-final { scan-tree-dump-times "if" 0 "evrp" } } */