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

Subversion Repositories openrisc

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

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

/* Test that gcc understands that the call to g might clobber i.  */
 
/* { dg-do run } */
/* { dg-options "-O2" } */
 
__inline int f ()
{
  static int i;
  int i2 = i;
  i = i2 + 1;
  return i;
}
 
int g () { return f (); }
 
int main ()
{
  if (f() != 1
      || g() != 2
      || f() != 3)
    return 1;
  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.