URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [inline_3.c] - Rev 758
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target i?86-*-linux* x86_64-*-linux* } } */ /* { dg-options "-O2 -fdump-tree-optimized -fdisable-tree-einline=foo,foo2 -fdisable-ipa-inline -Wno-attributes" } */ int g; __attribute__((always_inline)) void bar (void) { g++; } int foo (void) { bar (); return g; } int foo2 (void) { bar(); return g + 1; } /* { dg-final { scan-tree-dump-times "bar" 5 "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */ /* { dg-excess-errors "extra notes" } */
Go to most recent revision | Compare with Previous | Blame | View Log