URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [981001-2.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-require-weak "" } */ /* { dg-require-alias "" } */ #define weak_alias(func, aliasname) \ extern __typeof (func) aliasname __attribute__ ((weak, alias (#func))); #define add3(d, m, c) ((d) + (m) + (c)) int __add3(int d, int m, int c) { return d + m + c; } weak_alias (__add3, add3)
Go to most recent revision | Compare with Previous | Blame | View Log