(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
special/
weak-1.c
       1  /* { dg-do run { xfail { hppa*-*-hpux* && { ! lp64 } } } } */
       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  }