Fix error checking in iconv.
[glibc.git] / elf / ifuncmain1vis.c
blob81cd12288e52c60d2acb4d344abc4d3f1aa5ebfe
1 /* Test STT_GNU_IFUNC symbols:
3 1. Direct function call.
4 2. Function pointer.
5 3. Visibility with override.
6 */
8 #include <stdlib.h>
10 int ret_foo;
11 int ret_foo_hidden;
12 int ret_foo_protected;
14 extern int foo (void);
15 extern int foo_protected (void);
17 #ifndef FOO_P
18 typedef int (*foo_p) (void);
19 #endif
21 foo_p foo_ptr = foo;
22 foo_p foo_procted_ptr = foo_protected;
24 extern foo_p get_foo_p (void);
25 extern foo_p get_foo_hidden_p (void);
26 extern foo_p get_foo_protected_p (void);
28 int
29 __attribute__ ((noinline))
30 foo (void)
32 return -30;
35 int
36 __attribute__ ((noinline))
37 foo_hidden (void)
39 return -20;
42 int
43 __attribute__ ((noinline))
44 foo_protected (void)
46 return -40;
49 int
50 main (void)
52 foo_p p;
54 if (foo_ptr != foo)
55 abort ();
56 if ((*foo_ptr) () != -30)
57 abort ();
59 if (foo_procted_ptr != foo_protected)
60 abort ();
61 if ((*foo_procted_ptr) () != -40)
62 abort ();
64 p = get_foo_p ();
65 if (p != foo)
66 abort ();
67 if (foo () != -30)
68 abort ();
69 if (ret_foo != -30 || (*p) () != ret_foo)
70 abort ();
72 p = get_foo_hidden_p ();
73 if (foo_hidden () != -20)
74 abort ();
75 if (ret_foo_hidden != 1 || (*p) () != ret_foo_hidden)
76 abort ();
78 p = get_foo_protected_p ();
79 if (p == foo_protected)
80 abort ();
81 if (foo_protected () != -40)
82 abort ();
83 if (ret_foo_protected != 0 || (*p) () != ret_foo_protected)
84 abort ();
86 return 0;