URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [bfin-longcall-2.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target bfin-*-* } } */ /* { dg-options "-O2 -mlong-calls" } */ /* { dg-final { scan-assembler-not "call\[^\\n\]*foo" } } */ /* { dg-final { scan-assembler-not "jump\[^\\n\]*foo" } } */ /* { dg-final { scan-assembler-not "call\[^\\n\]*baz" } } */ /* { dg-final { scan-assembler-not "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 (); }
Go to most recent revision | Compare with Previous | Blame | View Log