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.c-torture/] [compile/] [20030921-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 12281 The darwin back-end was causing the function f is not being emitted. TREE_SYMBOL_REFERENCED was being set instead of calling mark_referenced. */ static void f(void); void g(void (*x) (void)){x();} static inline void f(void){} void h(){g(f);} int main(){h();return 0;}
Go to most recent revision | Compare with Previous | Blame | View Log