aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr60382.c
blob: a28c6313c40fa481c28553b21991faf0bbcb8615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "tree-vect.h"

int a, b, c, e, f;

void
foo ()
{
  for (b = 0; b < 3; b++)
    if (e)
      {
	for (c = 0; c < 4; c++)
	  {
	    if (b)
	      continue;
	    f = 1;
	    for (a = 0; a < 2; a++)
	      f |= 1;
	  }
	for (;;)
	  ;
      }
}

int
main ()
{
  check_vect ();
  foo ();
  return 0;
}

/* { dg-final { cleanup-tree-dump "vect" } } */