URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr44964.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fkeep-inline-functions -O" } */ static inline __attribute__ ((const)) void baz (int i) { } static __attribute__ ((always_inline)) inline __attribute__ ((flatten)) void bar (void) { baz (0); } void foo (void) { bar (); }