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/] [g++.dg/] [ext/] [attrib4.C] - Rev 154
Compare with Previous | Blame | View Log
// Test for syntax support of various attribute permutations.
int
__attribute__((noreturn))
__attribute__((unused))
one(void); // OK
__attribute__((noreturn))
__attribute__((unused))
int
two(void); // OK
int
__attribute__((unused))
three (void)
__attribute__((noreturn)); // OK
__attribute__((unused))
int
four (void)
__attribute__((noreturn)); // OK
int
five(void)
__attribute__((noreturn))
__attribute__((unused)); // OK
__attribute__((noreturn))
int
__attribute__((unused)) // parse error before '__attribute__' in C++
six (void); // OK in C