URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [special/] [weak-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run { xfail { hppa*-*-hpux* && { ! hppa*64*-*-* } } } } */ /* { dg-require-weak "" } */ /* { dg-additional-sources weak-1a.c } */ /* See PR target/23387 for hppa xfail details. */ #include <stdlib.h> int foo(void) __attribute__((weak)); int foo(void) { return 0; } int main(void) { if (foo()) exit(0); else abort(); }
Go to most recent revision | Compare with Previous | Blame | View Log