URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-prof/] [ic-misattribution-1a.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-options "-DEMPTY" } */ /* This file is only needed in combination with ic-misattribution-1.c but there's no easy way to make this file ignored. */ extern void callee (void); extern void caller (void (*func) (void)); typedef void (*func_t) (void); func_t func; int main () { #ifdef EMPTY #else func = callee; caller (callee); func (); #endif return 0; } /* { dg-final-use { cleanup-tree-dump "tree_profile" } } */