@@ -154,7 +154,9 @@ ExecutableLibraryDI::getArrayOf(LLVM::DITypeAttr typeAttr, int64_t count) {
154
154
builder.getContext (), builder.getI64IntegerAttr (count),
155
155
/* lowerBound=*/ nullptr , /* upperBound=*/ nullptr ,
156
156
/* stride=*/ nullptr ),
157
- });
157
+ },
158
+ /* dataLocation=*/ nullptr , /* rank=*/ nullptr , /* allocated=*/ nullptr ,
159
+ /* associated=*/ nullptr );
158
160
}
159
161
160
162
LLVM::DIDerivedTypeAttr
@@ -226,7 +228,9 @@ LLVM::DICompositeTypeAttr ExecutableLibraryDI::getProcessorV0T() {
226
228
/* alignInBits=*/ 0 ,
227
229
{
228
230
getMemberOf (" data" , getArrayOf (getUint64T (), 8 ), &offsetInBits),
229
- });
231
+ },
232
+ /* dataLocation=*/ nullptr , /* rank=*/ nullptr , /* allocated=*/ nullptr ,
233
+ /* associated=*/ nullptr );
230
234
}
231
235
232
236
LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getEnvironmentV0T () {
@@ -252,7 +256,10 @@ LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getEnvironmentV0T() {
252
256
getPtrOf (getPtrOf (getConstOf (getVoidPtr ()))),
253
257
&offsetInBits),
254
258
getMemberOf (" processor" , getProcessorV0T (), &offsetInBits),
255
- }));
259
+ },
260
+ /* dataLocation=*/ nullptr ,
261
+ /* rank=*/ nullptr , /* allocated=*/ nullptr ,
262
+ /* associated=*/ nullptr ));
256
263
}
257
264
258
265
LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getDispatchStateV0T () {
@@ -286,7 +293,9 @@ LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getDispatchStateV0T() {
286
293
getMemberOf (" binding_lengths" ,
287
294
getPtrOf (getConstOf (getArrayOf (getSizeT (), 64 ))),
288
295
&offsetInBits),
289
- }));
296
+ },
297
+ /* dataLocation=*/ nullptr , /* rank=*/ nullptr , /* allocated=*/ nullptr ,
298
+ /* associated=*/ nullptr ));
290
299
}
291
300
292
301
LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getWorkgroupStateV0T () {
@@ -308,7 +317,9 @@ LLVM::DIDerivedTypeAttr ExecutableLibraryDI::getWorkgroupStateV0T() {
308
317
getMemberOf (" processor_id" , getUint32T (), &offsetInBits),
309
318
getMemberOf (" local_memory" , getVoidPtr (), &offsetInBits),
310
319
getMemberOf (" local_memory_size" , getUint32T (), &offsetInBits),
311
- }));
320
+ },
321
+ /* dataLocation=*/ nullptr , /* rank=*/ nullptr , /* allocated=*/ nullptr ,
322
+ /* associated=*/ nullptr ));
312
323
}
313
324
314
325
// ------------------------------------------------------------------------------
0 commit comments