OSDN Git Service

fd45acdc7265ffa08d564da523badd4a585e935c
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / special / weak-1.c
1 /* { dg-do run { xfail { hppa*-*-hpux* && { ! hppa*64*-*-* } } } } */
2 /* { dg-require-weak "" } */
3 /* { dg-additional-sources weak-1a.c } */
4 /* See PR target/23387 for hppa xfail details.  */
5
6 #include <stdlib.h>
7
8 int foo(void) __attribute__((weak));
9
10 int foo(void) {
11     return 0;
12 }
13
14 int main(void) {
15
16     if (foo())
17         exit(0);
18     else
19         abort();
20 }