You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
208 B

/* Test calling one STT_GNU_IFUNC function with 3 different
STT_GNU_IFUNC definitions. */
#include <stdlib.h>
extern int foo1 (void);
int
main (void)
{
if (foo1 () != -1)
abort ();
return 0;
}