OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20031216-1.c] - Rev 823

Go to most recent revision | Compare with Previous | Blame | View Log

/* 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;
}
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.