OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr32338-1.c] - Rev 300

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

/* PR target/32338 */
/* { dg-do link } */
/* { dg-options "-O2 -fno-omit-frame-pointer" } */
 
struct S
{
};
 
int
__attribute__((noinline))
foo (struct S *d)
{
  return 2;
}
 
int
__attribute__((noinline))
bar (struct S *d)
{
  return 4;
}
 
int
__attribute__((noinline))
fnl (char const *q)
{
  return __builtin_strlen (q);
}
 
int
__attribute__((noinline))
baz (struct S *d, char const *q)
{
  unsigned int len;
  len = fnl (q);
  if (len > 512)
    return bar (d);
  return foo (d);
}
 
int
main (int argc, char *argv[])
{
  if (argc > 30)
    return baz ((void *) 0, "abcde");
  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.