No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / attr-weakref-1.c
blob46158bb109563e4df9903272160f4716e8c7d0bc
1 // { dg-do run }
2 // { dg-require-weak "" }
3 // This test requires support for undefined weak symbols. This support
4 // is not available on hppa*-*-hpux*. The test is skipped rather than
5 // xfailed to suppress the warning that would otherwise arise.
6 // { dg-skip-if "" { "hppa*-*-hpux*" } "*" { "" } }
7 // { dg-options "-O2" }
8 // { dg-additional-sources "attr-weakref-1a.c" }
10 // Copyright 2005 Free Software Foundation, Inc.
11 // Contributed by Alexandre Oliva <aoliva@redhat.com>
13 // Torture test for weakrefs. The first letter of an identifier
14 // indicates whether/how it is defined; the second letter indicates
15 // whether it is part of a variable or function test; the number that
16 // follows is a test counter, and a letter that may follow enables
17 // multiple identifiers within the same test (e.g., multiple weakrefs
18 // or pointers to the same identifier).
20 // Identifiers starting with W are weakrefs; those with p are
21 // pointers; those with g are global definitions; those with l are
22 // local definitions; those with w are expected to be weak undefined
23 // in the symbol table; those with u are expected to be marked as
24 // non-weak undefined in the symbol table.
26 #include <stdlib.h>
28 #define USED __attribute__((used))
30 typedef int vtype;
32 extern vtype wv1;
33 extern vtype Wv1a __attribute__((weakref ("wv1")));
34 static vtype *pv1a USED = &Wv1a;
35 extern vtype Wv1b __attribute__((weak, weakref, alias ("wv1")));
36 static vtype *pv1b USED = &Wv1b;
37 extern vtype Wv1c __attribute__((weakref));
38 extern vtype Wv1c __attribute__((alias ("wv1")));
39 static vtype *pv1c USED = &Wv1c;
41 vtype gv2;
42 extern vtype Wv2a __attribute__((weakref ("gv2")));
43 static vtype *pv2a USED = &Wv2a;
45 static vtype lv3;
46 extern vtype Wv3a __attribute__((weakref ("lv3")));
47 static vtype *pv3a USED = &Wv3a;
49 extern vtype uv4;
50 extern vtype Wv4a __attribute__((weakref ("uv4")));
51 static vtype *pv4a USED = &Wv4a;
52 static vtype *pv4 USED = &uv4;
54 extern vtype Wv5a __attribute__((weakref ("uv5")));
55 static vtype *pv5a USED = &Wv5a;
56 extern vtype uv5;
57 static vtype *pv5 USED = &uv5;
59 extern vtype Wv6a __attribute__((weakref ("wv6")));
60 static vtype *pv6a USED = &Wv6a;
61 extern vtype wv6;
63 extern vtype Wv7a __attribute__((weakref ("uv7")));
64 static vtype* USED fv7 (void) {
65 return &Wv7a;
67 extern vtype uv7;
68 static vtype* USED fv7a (void) {
69 return &uv7;
72 extern vtype uv8;
73 static vtype* USED fv8a (void) {
74 return &uv8;
76 extern vtype Wv8a __attribute__((weakref ("uv8")));
77 static vtype* USED fv8 (void) {
78 return &Wv8a;
81 extern vtype wv9 __attribute__((weak));
82 extern vtype Wv9a __attribute__((weakref ("wv9")));
83 static vtype *pv9a USED = &Wv9a;
85 extern vtype Wv10a __attribute__((weakref ("Wv10b")));
86 extern vtype Wv10b __attribute__((weakref ("Wv10c")));
87 extern vtype Wv10c __attribute__((weakref ("Wv10d")));
88 extern vtype Wv10d __attribute__((weakref ("wv10")));
89 extern vtype wv10;
91 extern vtype wv11;
92 extern vtype Wv11d __attribute__((weakref ("wv11")));
93 extern vtype Wv11c __attribute__((weakref ("Wv11d")));
94 extern vtype Wv11b __attribute__((weakref ("Wv11c")));
95 extern vtype Wv11a __attribute__((weakref ("Wv11b")));
97 extern vtype Wv12 __attribute__((weakref ("wv12")));
98 extern vtype wv12 __attribute__((weak));
100 extern vtype Wv13 __attribute__((weakref ("wv13")));
101 extern vtype wv13 __attribute__((weak));
103 extern vtype Wv14a __attribute__((weakref ("wv14")));
104 extern vtype Wv14b __attribute__((weakref ("wv14")));
105 extern vtype wv14 __attribute__((weak));
107 typedef void ftype(void);
109 extern ftype wf1;
110 extern ftype Wf1a __attribute__((weakref ("wf1")));
111 static ftype *pf1a USED = &Wf1a;
112 extern ftype Wf1b __attribute__((weak, weakref, alias ("wf1")));
113 static ftype *pf1b USED = &Wf1b;
114 extern ftype Wf1c __attribute__((weakref));
115 extern ftype Wf1c __attribute__((alias ("wf1")));
116 static ftype *pf1c USED = &Wf1c;
118 void gf2(void) {}
119 extern ftype Wf2a __attribute__((weakref ("gf2")));
120 static ftype *pf2a USED = &Wf2a;
122 static void lf3(void) {}
123 extern ftype Wf3a __attribute__((weakref ("lf3")));
124 static ftype *pf3a USED = &Wf3a;
126 extern ftype uf4;
127 extern ftype Wf4a __attribute__((weakref ("uf4")));
128 static ftype *pf4a USED = &Wf4a;
129 static ftype *pf4 USED = &uf4;
131 extern ftype Wf5a __attribute__((weakref ("uf5")));
132 static ftype *pf5a USED = &Wf5a;
133 extern ftype uf5;
134 static ftype *pf5 USED = &uf5;
136 extern ftype Wf6a __attribute__((weakref ("wf6")));
137 static ftype *pf6a USED = &Wf6a;
138 extern ftype wf6;
140 extern ftype Wf7a __attribute__((weakref ("uf7")));
141 static ftype* USED ff7 (void) {
142 return &Wf7a;
144 extern ftype uf7;
145 static ftype* USED ff7a (void) {
146 return &uf7;
149 extern ftype uf8;
150 static ftype* USED ff8a (void) {
151 return &uf8;
153 extern ftype Wf8a __attribute__((weakref ("uf8")));
154 static ftype* USED ff8 (void) {
155 return &Wf8a;
158 extern ftype wf9 __attribute__((weak));
159 extern ftype Wf9a __attribute__((weakref ("wf9")));
160 static ftype *pf9a USED = &Wf9a;
162 extern ftype Wf10a __attribute__((weakref ("Wf10b")));
163 extern ftype Wf10b __attribute__((weakref ("Wf10c")));
164 extern ftype Wf10c __attribute__((weakref ("Wf10d")));
165 extern ftype Wf10d __attribute__((weakref ("wf10")));
166 extern ftype wf10;
168 extern ftype wf11;
169 extern ftype Wf11d __attribute__((weakref ("wf11")));
170 extern ftype Wf11c __attribute__((weakref ("Wf11d")));
171 extern ftype Wf11b __attribute__((weakref ("Wf11c")));
172 extern ftype Wf11a __attribute__((weakref ("Wf11b")));
174 extern ftype Wf12 __attribute__((weakref ("wf12")));
175 extern ftype wf12 __attribute__((weak));
177 extern ftype Wf13 __attribute__((weakref ("wf13")));
178 extern ftype wf13 __attribute__((weak));
180 extern ftype Wf14a __attribute__((weakref ("wf14")));
181 extern ftype Wf14b __attribute__((weakref ("wf14")));
182 extern ftype wf14 __attribute__((weak));
184 #define chk(p) do { if (!p) abort (); } while (0)
186 int main () {
187 chk (!pv1a);
188 chk (!pv1b);
189 chk (!pv1c);
190 chk (pv2a);
191 chk (pv3a);
192 chk (pv4a);
193 chk (pv4);
194 chk (pv5a);
195 chk (pv5);
196 chk (!pv6a);
197 chk (fv7 ());
198 chk (fv7a ());
199 chk (fv8 ());
200 chk (fv8a ());
201 chk (!pv9a);
202 chk (!&Wv10a);
203 chk (!&Wv11a);
204 chk (!&Wv12);
205 chk (!&wv12);
206 chk (!&wv13);
207 chk (!&Wv14a);
209 chk (!pf1a);
210 chk (!pf1b);
211 chk (!pf1c);
212 chk (pf2a);
213 chk (pf3a);
214 chk (pf4a);
215 chk (pf4);
216 chk (pf5a);
217 chk (pf5);
218 chk (!pf6a);
219 chk (ff7 ());
220 chk (ff7a ());
221 chk (ff8 ());
222 chk (ff8a ());
223 chk (!pf9a);
224 chk (!&Wf10a);
225 chk (!&Wf11a);
226 chk (!&Wf12);
227 chk (!&wf12);
228 chk (!&wf13);
229 chk (!&Wf14a);
231 exit (0);