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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [treelang/] [execute/] [static.tree] - Rev 823

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

// { dg-do run }
external_reference void abort ();
external_reference void exit (int code);
external_definition int main (int argc, int argv);

static int foo ();

foo
{
        static int bar = +1;

        bar = bar + +1;
        return bar;
}

main
{
  automatic int aaa = +3;

  aaa = foo ();
  aaa = foo ();
  
  if (aaa == 3)
    { 
      exit (0);
    }
  else
    {
      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.