view gcc/testsuite/gcc.dg/20031216-1.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

/* This used to abort due to a loop bug on s390*.  */

/* { dg-do run } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -fPIC" { target s390*-*-* } } */

extern void abort (void);

int count = 0;
char *str;

void test (int flag)
{
  char *p;

  for (;;)
    {
      if (count > 5)
	return;

      p = "test";

      if (flag)
	count++;

      str = p;
    }
}

int main (void)
{
  test (1);

  if (str[0] != 't')
    abort ();

  return 0;
}