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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [bfin-longcall-1.c] - Rev 154
Compare with Previous | Blame | View Log
/* { dg-do compile { target bfin-*-* } } */ /* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "call\[^\\n\]*foo" } } */ /* { dg-final { scan-assembler-not "jump\[^\\n\]*foo" } } */ /* { dg-final { scan-assembler "call\[^\\n\]*baz" } } */ /* { dg-final { scan-assembler "jump\[^\\n\]*baz" } } */ /* { dg-final { scan-assembler "call\[^\\n\]*bar" } } */ /* { dg-final { scan-assembler "jump\[^\\n\]*bar" } } */ extern void foo () __attribute__((longcall)); extern void bar () __attribute__((shortcall)); extern void baz (); int t1 () { foo (); bar (); baz (); return 4; } void t2 () { foo (); } void t3 () { bar (); } void t4 () { baz (); }