Home | History | Annotate | Download | only in ld-ifunc
      1 #include <stdio.h>
      2 
      3 extern void abort (void);
      4 extern int foo (int) __attribute__ ((visibility("hidden")));
      5 
      6 int bar()
      7 {
      8   if (foo (5) != 5)
      9     abort ();
     10   printf("PASS\n");
     11 }
     12