URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [tic6x/] [weak-call.c] - Rev 691
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "call\[\\t ]*.s.\[\\t ]*.f" } } */ /* { dg-final { scan-assembler-not "call\[\\t ]*.s.\[\\t ]*.g" } } */ extern void f () __attribute__ ((weak)); extern void g () __attribute__ ((weak)) __attribute__ ((noinline)); void g () { } int main () { f (); g (); }