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

Subversion Repositories openrisc

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

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

// { dg-do run }
// Tests whether initializtion works properly.
external_reference void abort ();
external_reference void exit (int code);
external_definition int main ();

static int foo ();

foo
{
        automatic int bar;

        bar = +1;
        bar = bar + +1;
        return bar;
}

main
{
  automatic int aaa;

  aaa = foo ();
  
  if (aaa == +2)
    { 
      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.