aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr64493.c
blob: d3faf84bcc16d31fc11dd2d0cd7242972fdbafdc (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
#include "tree-vect.h"

int a, b, c, d, e, f, g, h;

int
main ()
{
  check_vect ();

  for (; a; a--)
    for (d = 1; d <= 0; d++)
#pragma GCC novector
      for (; d;)
	if (h)
	  {
	    if (!g) __builtin_abort ();
	    if (!0) __builtin_abort ();
	  }

  for (f = 4; f; f--)
    {
      for (b = 0; b < 2; b++)
	c |= 1;
      e |= c;
    }

  return 0;
}