aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/vrp16.c
blob: cb8a5d74730fa13644fab849eab5765af8159003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp-details" } */


extern void abort (void) __attribute__ ((__noreturn__));
struct rtx_def;
typedef struct rtx_def *rtx;
struct rtx_def
{
  int code;
};
int
nonlocal_mentioned_p (rtx x)
{
  if (x->code == 6 || x->code == 7)
    if (x->code == 7)
      if (x->code != 7)
	abort ();
}

/* { dg-final { scan-tree-dump-times "Folding predicate .*to 0" 1 "vrp" } } */
/* { dg-final { cleanup-tree-dump "vrp" } } */