view gcc/testsuite/gcc.dg/vect/pr64495.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

#include <assert.h>
#include "tree-vect.h"

int a, b, c, d, e, f, g, i, j;
static int *h = &e;

int
main ()
{
  check_vect ();

  for (; a;)
    for (; g; g++)
      for (; f; f++)
	if (j)
	  {
	    assert(b); 
	    assert(0);
	  }
  for (i = 24; i; i--)
    {
      for (c = 0; c < 6; c++)
	d |= 1;
      *h |= d;
    }

  if (e != 1) 
    __builtin_abort (); 

  return 0;
}