URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [deprecated-6.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test __attribute__((deprecated)). Test merging with multiple declarations. Bug 7425. */ /* { dg-do compile } */ /* { dg-options "" } */ void func(void); void func(void) __attribute__((deprecated ("Do not use"))); void f(void) { func(); /* { dg-warning "'func' is deprecated .declared at .*.: Do not use" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log