HomeSort by relevance Sort by last modified time
    Searched refs:library_func2 (Results 1 - 4 of 4) sorted by null

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ifunc/
test-1.c 1 extern int library_func2 (void);
2 int (*fn) (void) = library_func2;
test-2.c 1 extern int library_func2 (void);
2 int foo (void) { library_func2 (); return 0; }
3 __asm__(".type library_func2, %gnu_indirect_function");
lib.c 14 void * library_func2_ifunc (void) __asm__ ("library_func2");
16 __asm__(".type library_func2, %gnu_indirect_function");
18 extern int library_func2 (int);
19 extern __typeof (library_func2) library_func2 __asm__ ("__GI_library_func2");
23 __asm__(".set __GI_library_func2, library_func2");
28 return library_func2 (x);
34 library_func2 (void) function
prog.c 4 extern int library_func2 (void);
13 res += library_func2 ();
22 printf ("wrong value returned by library_func2\n");
29 printf ("wrong value returned by library_func2\n");

Completed in 81 milliseconds