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/] [special/] [20000419-2.c] - Rev 154
Compare with Previous | Blame | View Log
/* A static function with a global alias should not get 'defined but not used' warnings. Exposed by Linux kernel. */ /* { dg-do compile } */ /* { dg-require-alias "" } */ /* { dg-options "-Wall" } */ extern void do_something (void); extern void do_something_else (void); static int init_foobar(void) /* { dg-bogus "defined but not used" "not used warning" } */ { do_something(); do_something_else(); return 0; } int init_module(void) __attribute__((alias("init_foobar")));