Lines Matching refs:MAX

26 #define MAX __SIZE_MAX__  macro
39 p = new char [MAX]; // { dg-error "size of array" } in test_one_dim_char_array()
40 p = new char [MAX - 1]; // { dg-error "size of array" } in test_one_dim_char_array()
41 p = new char [MAX - 2]; // { dg-error "size of array" } in test_one_dim_char_array()
42 p = new char [MAX - 99]; // { dg-error "size of array" } in test_one_dim_char_array()
43 p = new char [MAX / 2]; // { dg-error "size of array" } in test_one_dim_char_array()
44 p = new char [MAX / 2 - 1]; // { dg-error "size of array" } in test_one_dim_char_array()
45 p = new char [MAX / 2 - 2]; // { dg-error "size of array" } in test_one_dim_char_array()
58 p = new char [MAX / 2 - 7]; // okay in test_one_dim_char_array()
59 p = new char [MAX / 2 - 8]; // okay in test_one_dim_char_array()
65 p = new short [MAX]; // { dg-error "size of array" } in test_one_dim_short_array()
66 p = new short [MAX - 1]; // { dg-error "size of array" } in test_one_dim_short_array()
67 p = new short [MAX - 2]; // { dg-error "size of array" } in test_one_dim_short_array()
68 p = new short [MAX - 99]; // { dg-error "size of array" } in test_one_dim_short_array()
69 p = new short [MAX / 2]; // { dg-error "size of array" } in test_one_dim_short_array()
70 p = new short [MAX / 2 - 1]; // { dg-error "size of array" } in test_one_dim_short_array()
71 p = new short [MAX / 2 - 2]; // { dg-error "size of array" } in test_one_dim_short_array()
72 p = new short [MAX / 2 - 3]; // { dg-error "size of array" } in test_one_dim_short_array()
73 p = new short [MAX / 2 - 4]; // { dg-error "size of array" } in test_one_dim_short_array()
74 p = new short [MAX / 2 - 5]; // { dg-error "size of array" } in test_one_dim_short_array()
75 p = new short [MAX / 2 - 6]; // { dg-error "size of array" } in test_one_dim_short_array()
76 p = new short [MAX / 2 - 7]; // { dg-error "size of array" } in test_one_dim_short_array()
77 p = new short [MAX / 2 - 8]; // { dg-error "size of array" } in test_one_dim_short_array()
78 p = new short [MAX / 4]; // { dg-error "size of array" } in test_one_dim_short_array()
83 p = new short [MAX / 4 - 4]; // okay in test_one_dim_short_array()
90 p = new char [1][MAX]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
91 p = new char [1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
92 p = new char [1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
93 p = new char [1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
94 p = new char [1][MAX / 2]; // { dg-error "size of array" } in test_two_dim_char_array()
95 p = new char [1][MAX / 2 - 1]; // { dg-error "size of array" } in test_two_dim_char_array()
96 p = new char [1][MAX / 2 - 2]; // { dg-error "size of array" } in test_two_dim_char_array()
104 p = new char [1][MAX / 2 - 7]; // okay in test_two_dim_char_array()
105 p = new char [1][MAX / 2 - 8]; // okay in test_two_dim_char_array()
107 p = new char [2][MAX]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
108 p = new char [2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
109 p = new char [2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
110 p = new char [2][MAX / 2]; // { dg-error "size of array" } in test_two_dim_char_array()
111 p = new char [2][MAX / 2 - 1]; // { dg-error "size of array" } in test_two_dim_char_array()
112 p = new char [2][MAX / 2 - 2]; // { dg-error "size of array" } in test_two_dim_char_array()
113 p = new char [2][MAX / 2 - 7]; // { dg-error "size of array" } in test_two_dim_char_array()
114 p = new char [2][MAX / 2 - 8]; // { dg-error "size of array" } in test_two_dim_char_array()
116 p = new char [MAX][MAX]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
117 p = new char [MAX][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
118 p = new char [MAX][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_two_dim_char_array()
119 p = new char [MAX][MAX / 2]; // { dg-error "size of array" } in test_two_dim_char_array()
120 p = new char [MAX][MAX / 2 - 1]; // { dg-error "size of array" } in test_two_dim_char_array()
121 p = new char [MAX][MAX / 2 - 2]; // { dg-error "size of array" } in test_two_dim_char_array()
122 p = new char [MAX][MAX / 2 - 7]; // { dg-error "size of array" } in test_two_dim_char_array()
123 p = new char [MAX][MAX / 2 - 8]; // { dg-error "size of array" } in test_two_dim_char_array()
124 p = new char [MAX][2]; // { dg-error "size of array" } in test_two_dim_char_array()
125 p = new char [MAX][1]; // { dg-error "size of array" } in test_two_dim_char_array()
126 p = new char [MAX / 2][1]; // { dg-error "size of array" } in test_two_dim_char_array()
127 p = new char [MAX / 2 - 1][1]; // { dg-error "size of array" } in test_two_dim_char_array()
128 p = new char [MAX / 2 - 2][1]; // { dg-error "size of array" } in test_two_dim_char_array()
136 p = new char [MAX / 2 - 7][1]; // okay in test_two_dim_char_array()
137 p = new char [MAX / 2 - 8][1]; // okay in test_two_dim_char_array()
145 p = new char [1][1][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
146 p = new char [1][1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
147 p = new char [1][1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
148 p = new char [1][1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
149 p = new char [1][1][MAX / 2]; // { dg-error "size of array" } in test_three_dim_char_array()
150 p = new char [1][1][MAX / 2 - 1]; // { dg-error "size of array" } in test_three_dim_char_array()
151 p = new char [1][1][MAX / 2 - 2]; // { dg-error "size of array" } in test_three_dim_char_array()
159 p = new char [1][1][MAX / 2 - 7]; // okay in test_three_dim_char_array()
160 p = new char [1][1][MAX / 2 - 8]; // okay in test_three_dim_char_array()
162 p = new char [1][2][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
163 p = new char [1][2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
164 p = new char [1][2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
165 p = new char [1][2][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
166 p = new char [1][2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
167 p = new char [1][2][MAX / 2 - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
168 p = new char [1][2][MAX / 2 - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
169 p = new char [1][2][MAX / 2 - 3]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
170 p = new char [1][2][MAX / 2 - 4]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
171 p = new char [1][2][MAX / 2 - 5]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
172 p = new char [1][2][MAX / 2 - 6]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
173 p = new char [1][2][MAX / 2 - 7]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
174 p = new char [1][2][MAX / 2 - 8]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
175 p = new char [1][2][MAX / 4]; // { dg-error "size of array" } in test_three_dim_char_array()
181 p = new char [1][2][MAX / 4 - 3]; // okay in test_three_dim_char_array()
182 p = new char [1][2][MAX / 4 - 4]; // okay in test_three_dim_char_array()
184 p = new char [2][1][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
185 p = new char [2][1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
186 p = new char [2][1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
187 p = new char [2][1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
188 p = new char [2][1][MAX / 2]; // { dg-error "size of array" } in test_three_dim_char_array()
189 p = new char [2][1][MAX / 2 - 1]; // { dg-error "size of array" } in test_three_dim_char_array()
190 p = new char [2][1][MAX / 2 - 2]; // { dg-error "size of array" } in test_three_dim_char_array()
191 p = new char [2][1][MAX / 2 - 3]; // { dg-error "size of array" } in test_three_dim_char_array()
192 p = new char [2][1][MAX / 2 - 4]; // { dg-error "size of array" } in test_three_dim_char_array()
193 p = new char [2][1][MAX / 2 - 5]; // { dg-error "size of array" } in test_three_dim_char_array()
194 p = new char [2][1][MAX / 2 - 6]; // { dg-error "size of array" } in test_three_dim_char_array()
195 p = new char [2][1][MAX / 2 - 7]; // { dg-error "size of array" } in test_three_dim_char_array()
196 p = new char [2][1][MAX / 2 - 8]; // { dg-error "size of array" } in test_three_dim_char_array()
197 p = new char [2][1][MAX / 4]; // { dg-error "size of array" } in test_three_dim_char_array()
203 p = new char [2][1][MAX / 4 - 3]; // okay in test_three_dim_char_array()
204 p = new char [2][1][MAX / 4 - 4]; // okay in test_three_dim_char_array()
206 p = new char [2][2][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
207 p = new char [2][2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
208 p = new char [2][2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
209 p = new char [2][2][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
210 p = new char [2][2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
211 p = new char [2][2][MAX / 2 - 1]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
212 p = new char [2][2][MAX / 2 - 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
213 p = new char [2][2][MAX / 2 - 3]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
214 p = new char [2][2][MAX / 2 - 4]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
215 p = new char [2][2][MAX / 2 - 5]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
216 p = new char [2][2][MAX / 2 - 6]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
217 p = new char [2][2][MAX / 2 - 7]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
218 p = new char [2][2][MAX / 2 - 8]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
219 p = new char [2][2][MAX / 4]; // { dg-error "size of array" } in test_three_dim_char_array()
220 p = new char [2][2][MAX / 4 - 1]; // { dg-error "size of array" } in test_three_dim_char_array()
221 p = new char [2][2][MAX / 4 - 2]; // { dg-error "size of array" } in test_three_dim_char_array()
227 p = new char [2][2][MAX / 8 - 2]; in test_three_dim_char_array()
228 p = new char [2][2][MAX / 8 - 3]; in test_three_dim_char_array()
230 p = new char [2][MAX][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
231 p = new char [2][MAX - 1][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
232 p = new char [2][MAX - 2][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
233 p = new char [2][MAX - 99][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
234 p = new char [2][MAX / 2][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
235 p = new char [2][MAX / 2 - 1][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
236 p = new char [2][MAX / 2 - 2][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
237 p = new char [2][MAX / 2 - 3][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
238 p = new char [2][MAX / 2 - 4][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
239 p = new char [2][MAX / 2 - 5][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
240 p = new char [2][MAX / 2 - 6][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
241 p = new char [2][MAX / 2 - 7][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
242 p = new char [2][MAX / 2 - 8][2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
243 p = new char [2][MAX / 4][2]; // { dg-error "size of array" } in test_three_dim_char_array()
244 p = new char [2][MAX / 4 - 1][2]; // { dg-error "size of array" } in test_three_dim_char_array()
245 p = new char [2][MAX / 4 - 2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
251 p = new char [2][MAX / 8 - 2][2]; in test_three_dim_char_array()
252 p = new char [2][MAX / 8 - 3][2]; in test_three_dim_char_array()
254 p = new char [MAX][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
255 p = new char [MAX - 1][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
256 p = new char [MAX - 2][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
257 p = new char [MAX - 99][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
258 p = new char [MAX / 2][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
259 p = new char [MAX / 2 - 1][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
260 p = new char [MAX / 2 - 2][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
261 p = new char [MAX / 2 - 3][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
262 p = new char [MAX / 2 - 4][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
263 p = new char [MAX / 2 - 5][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
264 p = new char [MAX / 2 - 6][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
265 p = new char [MAX / 2 - 7][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
266 p = new char [MAX / 2 - 8][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
267 p = new char [MAX / 4][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
268 p = new char [MAX / 4 - 1][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
269 p = new char [MAX / 4 - 2][2][2]; // { dg-error "size of array" } in test_three_dim_char_array()
275 p = new char [MAX / 8 - 2][2][2]; in test_three_dim_char_array()
276 p = new char [MAX / 8 - 3][2][2]; in test_three_dim_char_array()
278 p = new char [MAX][MAX][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
279 p = new char [MAX][MAX][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
280 p = new char [MAX][MAX / 2][MAX]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
281 p = new char [MAX][MAX / 2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
282 p = new char [MAX / 2][MAX / 2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_three_dim_char_array()
318 p = new (p) B [MAX]; // { dg-error "size of array" } in test_one_dim_byte_array()
319 p = new (p) B [MAX - 1]; // { dg-error "size of array" } in test_one_dim_byte_array()
320 p = new (p) B [MAX - 2]; // { dg-error "size of array" } in test_one_dim_byte_array()
321 p = new (p) B [MAX - 99]; // { dg-error "size of array" } in test_one_dim_byte_array()
322 p = new (p) B [MAX / 2]; // { dg-error "size of array" } in test_one_dim_byte_array()
323 p = new (p) B [MAX / 2 - 1]; // { dg-error "size of array" } in test_one_dim_byte_array()
324 p = new (p) B [MAX / 2 - 2]; // { dg-error "size of array" } in test_one_dim_byte_array()
337 p = new (p) B [MAX / 2 - 7]; // okay in test_one_dim_byte_array()
338 p = new (p) B [MAX / 2 - 8]; // okay in test_one_dim_byte_array()
345 p = new (p) B [1][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
346 p = new (p) B [1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
347 p = new (p) B [1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
348 p = new (p) B [1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
349 p = new (p) B [1][MAX / 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
350 p = new (p) B [1][MAX / 2 - 1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
351 p = new (p) B [1][MAX / 2 - 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
359 p = new (p) B [1][MAX / 2 - 7]; // okay in test_placement_two_dim_byte_struct_array()
360 p = new (p) B [1][MAX / 2 - 8]; // okay in test_placement_two_dim_byte_struct_array()
362 p = new (p) B [2][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
363 p = new (p) B [2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
364 p = new (p) B [2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
365 p = new (p) B [2][MAX / 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
366 p = new (p) B [2][MAX / 2 - 1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
367 p = new (p) B [2][MAX / 2 - 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
368 p = new (p) B [2][MAX / 2 - 7]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
369 p = new (p) B [2][MAX / 2 - 8]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
371 p = new (p) B [MAX][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
372 p = new (p) B [MAX][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
373 p = new (p) B [MAX][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_two_dim_byte_struct_array()
374 p = new (p) B [MAX][MAX / 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
375 p = new (p) B [MAX][MAX / 2 - 1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
376 p = new (p) B [MAX][MAX / 2 - 2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
377 p = new (p) B [MAX][MAX / 2 - 7]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
378 p = new (p) B [MAX][MAX / 2 - 8]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
379 p = new (p) B [MAX][2]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
380 p = new (p) B [MAX][1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
381 p = new (p) B [MAX / 2][1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
382 p = new (p) B [MAX / 2 - 1][1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
383 p = new (p) B [MAX / 2 - 2][1]; // { dg-error "size of array" } in test_placement_two_dim_byte_struct_array()
391 p = new (p) B [MAX / 2 - 7][1]; // okay in test_placement_two_dim_byte_struct_array()
392 p = new (p) B [MAX / 2 - 8][1]; // okay in test_placement_two_dim_byte_struct_array()
400 p = new (p) B [1][1][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
401 p = new (p) B [1][1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
402 p = new (p) B [1][1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
403 p = new (p) B [1][1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
404 p = new (p) B [1][1][MAX / 2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
405 p = new (p) B [1][1][MAX / 2 - 1]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
406 p = new (p) B [1][1][MAX / 2 - 2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
414 p = new (p) B [1][1][MAX / 2 - 7]; // okay in test_placement_three_dim_byte_struct_array()
415 p = new (p) B [1][1][MAX / 2 - 8]; // okay in test_placement_three_dim_byte_struct_array()
417 p = new (p) B [1][2][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
418 p = new (p) B [1][2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
419 p = new (p) B [1][2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
420 p = new (p) B [1][2][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
421 p = new (p) B [1][2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
422 p = new (p) B [1][2][MAX / 2 - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
423 p = new (p) B [1][2][MAX / 2 - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
424 p = new (p) B [1][2][MAX / 2 - 3]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
425 p = new (p) B [1][2][MAX / 2 - 4]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
426 p = new (p) B [1][2][MAX / 2 - 5]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
427 p = new (p) B [1][2][MAX / 2 - 6]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
428 p = new (p) B [1][2][MAX / 2 - 7]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
429 p = new (p) B [1][2][MAX / 2 - 8]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
430 p = new (p) B [1][2][MAX / 4]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
436 p = new (p) B [1][2][MAX / 4 - 3]; // okay in test_placement_three_dim_byte_struct_array()
437 p = new (p) B [1][2][MAX / 4 - 4]; // okay in test_placement_three_dim_byte_struct_array()
439 p = new (p) B [2][1][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
440 p = new (p) B [2][1][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
441 p = new (p) B [2][1][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
442 p = new (p) B [2][1][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
443 p = new (p) B [2][1][MAX / 2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
444 p = new (p) B [2][1][MAX / 2 - 1]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
445 p = new (p) B [2][1][MAX / 2 - 2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
446 p = new (p) B [2][1][MAX / 2 - 3]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
447 p = new (p) B [2][1][MAX / 2 - 4]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
448 p = new (p) B [2][1][MAX / 2 - 5]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
449 p = new (p) B [2][1][MAX / 2 - 6]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
450 p = new (p) B [2][1][MAX / 2 - 7]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
451 p = new (p) B [2][1][MAX / 2 - 8]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
452 p = new (p) B [2][1][MAX / 4]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
458 p = new (p) B [2][1][MAX / 4 - 3]; // okay in test_placement_three_dim_byte_struct_array()
459 p = new (p) B [2][1][MAX / 4 - 4]; // okay in test_placement_three_dim_byte_struct_array()
461 p = new (p) B [2][2][MAX]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
462 p = new (p) B [2][2][MAX - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
463 p = new (p) B [2][2][MAX - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
464 p = new (p) B [2][2][MAX - 99]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
465 p = new (p) B [2][2][MAX / 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
466 p = new (p) B [2][2][MAX / 2 - 1]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
467 p = new (p) B [2][2][MAX / 2 - 2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
468 p = new (p) B [2][2][MAX / 2 - 3]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
469 p = new (p) B [2][2][MAX / 2 - 4]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
470 p = new (p) B [2][2][MAX / 2 - 5]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
471 p = new (p) B [2][2][MAX / 2 - 6]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
472 p = new (p) B [2][2][MAX / 2 - 7]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
473 p = new (p) B [2][2][MAX / 2 - 8]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
474 p = new (p) B [2][2][MAX / 4]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
475 p = new (p) B [2][2][MAX / 4 - 1]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
476 p = new (p) B [2][2][MAX / 4 - 2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
482 p = new (p) B [2][2][MAX / 8 - 2]; in test_placement_three_dim_byte_struct_array()
483 p = new (p) B [2][2][MAX / 8 - 3]; in test_placement_three_dim_byte_struct_array()
485 p = new (p) B [2][MAX][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
486 p = new (p) B [2][MAX - 1][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
487 p = new (p) B [2][MAX - 2][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
488 p = new (p) B [2][MAX - 99][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
489 p = new (p) B [2][MAX / 2][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
490 p = new (p) B [2][MAX / 2 - 1][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
491 p = new (p) B [2][MAX / 2 - 2][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
492 p = new (p) B [2][MAX / 2 - 3][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
493 p = new (p) B [2][MAX / 2 - 4][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
494 p = new (p) B [2][MAX / 2 - 5][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
495 p = new (p) B [2][MAX / 2 - 6][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
496 p = new (p) B [2][MAX / 2 - 7][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
497 p = new (p) B [2][MAX / 2 - 8][2]; // { dg-error "size of (unnamed )?array" } in test_placement_three_dim_byte_struct_array()
498 p = new (p) B [2][MAX / 4][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
499 p = new (p) B [2][MAX / 4 - 1][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
500 p = new (p) B [2][MAX / 4 - 2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
506 p = new (p) B [2][MAX / 8 - 2][2]; in test_placement_three_dim_byte_struct_array()
507 p = new (p) B [2][MAX / 8 - 3][2]; in test_placement_three_dim_byte_struct_array()
509 p = new (p) B [MAX][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
510 p = new (p) B [MAX - 1][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
511 p = new (p) B [MAX - 2][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
512 p = new (p) B [MAX - 99][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
513 p = new (p) B [MAX / 2][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
514 p = new (p) B [MAX / 2 - 1][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
515 p = new (p) B [MAX / 2 - 2][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
516 p = new (p) B [MAX / 2 - 3][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
517 p = new (p) B [MAX / 2 - 4][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
518 p = new (p) B [MAX / 2 - 5][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
519 p = new (p) B [MAX / 2 - 6][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
520 p = new (p) B [MAX / 2 - 7][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
521 p = new (p) B [MAX / 2 - 8][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
522 p = new (p) B [MAX / 4][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
523 p = new (p) B [MAX / 4 - 1][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
524 p = new (p) B [MAX / 4 - 2][2][2]; // { dg-error "size of array" } in test_placement_three_dim_byte_struct_array()
530 p = new (p) B [MAX / 8 - 2][2][2]; in test_placement_three_dim_byte_struct_array()
531 p = new (p) B [MAX / 8 - 3][2][2]; in test_placement_three_dim_byte_struct_array()