@@ -1149,7 +1149,6 @@ def SYCLDevice : InheritableAttr {
1149
1149
let Subjects = SubjectList<[Function]>;
1150
1150
let LangOpts = [SYCLIsDevice];
1151
1151
let Documentation = [SYCLDeviceDocs];
1152
- let PragmaAttributeSupport = 0;
1153
1152
}
1154
1153
1155
1154
def SYCLKernel : InheritableAttr {
@@ -1167,7 +1166,6 @@ def SYCLSimd : InheritableAttr {
1167
1166
let Subjects = SubjectList<[Function]>;
1168
1167
let LangOpts = [SYCLExplicitSIMD];
1169
1168
let Documentation = [SYCLSimdDocs];
1170
- let PragmaAttributeSupport = 0;
1171
1169
}
1172
1170
1173
1171
// Available in SYCL explicit SIMD extension. Binds a file scope private
@@ -1180,7 +1178,6 @@ def SYCLRegisterNum : InheritableAttr {
1180
1178
// for the host device as well
1181
1179
let LangOpts = [SYCLExplicitSIMD];
1182
1180
let Documentation = [SYCLRegisterNumDocs];
1183
- let PragmaAttributeSupport = 0;
1184
1181
}
1185
1182
1186
1183
// Used to mark ESIMD kernel pointer parameters originating from accessors.
@@ -1190,7 +1187,6 @@ def SYCLSimdAccessorPtr : InheritableAttr {
1190
1187
let Subjects = SubjectList<[ParmVar]>;
1191
1188
let LangOpts = [SYCLExplicitSIMD];
1192
1189
let Documentation = [SYCLSimdAccessorPtrDocs];
1193
- let PragmaAttributeSupport = 0;
1194
1190
}
1195
1191
1196
1192
def SYCLScope : Attr {
@@ -1219,7 +1215,6 @@ def SYCLDeviceIndirectlyCallable : InheritableAttr {
1219
1215
let Subjects = SubjectList<[Function]>;
1220
1216
let LangOpts = [SYCLIsDevice];
1221
1217
let Documentation = [SYCLDeviceIndirectlyCallableDocs];
1222
- let PragmaAttributeSupport = 0;
1223
1218
}
1224
1219
1225
1220
def SYCLIntelBufferLocation : InheritableAttr {
@@ -1244,7 +1239,6 @@ def SYCLIntelKernelArgsRestrict : InheritableAttr {
1244
1239
let LangOpts = [ SYCLIsDevice, SYCLIsHost ];
1245
1240
let Documentation = [ SYCLIntelKernelArgsRestrictDocs ];
1246
1241
let SimpleHandler = 1;
1247
- let PragmaAttributeSupport = 0;
1248
1242
}
1249
1243
1250
1244
def SYCLIntelNumSimdWorkItems : InheritableAttr {
@@ -1254,7 +1248,6 @@ def SYCLIntelNumSimdWorkItems : InheritableAttr {
1254
1248
let LangOpts = [SYCLIsDevice, SYCLIsHost];
1255
1249
let Subjects = SubjectList<[Function], ErrorDiag>;
1256
1250
let Documentation = [SYCLIntelNumSimdWorkItemsAttrDocs];
1257
- let PragmaAttributeSupport = 0;
1258
1251
}
1259
1252
1260
1253
def SYCLIntelUseStallEnableClusters : InheritableAttr {
@@ -1267,7 +1260,6 @@ def SYCLIntelUseStallEnableClusters : InheritableAttr {
1267
1260
}
1268
1261
}];
1269
1262
let Documentation = [SYCLIntelUseStallEnableClustersAttrDocs];
1270
- let PragmaAttributeSupport = 0;
1271
1263
}
1272
1264
1273
1265
def SYCLIntelSchedulerTargetFmaxMhz : InheritableAttr {
@@ -1277,7 +1269,6 @@ def SYCLIntelSchedulerTargetFmaxMhz : InheritableAttr {
1277
1269
let LangOpts = [SYCLIsDevice, SYCLIsHost];
1278
1270
let Subjects = SubjectList<[Function], ErrorDiag>;
1279
1271
let Documentation = [SYCLIntelSchedulerTargetFmaxMhzAttrDocs];
1280
- let PragmaAttributeSupport = 0;
1281
1272
let AdditionalMembers = [{
1282
1273
static unsigned getMinValue() {
1283
1274
return 0;
@@ -1286,7 +1277,6 @@ def SYCLIntelSchedulerTargetFmaxMhz : InheritableAttr {
1286
1277
return 1024*1024;
1287
1278
}
1288
1279
}];
1289
-
1290
1280
}
1291
1281
1292
1282
def SYCLIntelMaxWorkGroupSize : InheritableAttr {
@@ -1297,7 +1287,6 @@ def SYCLIntelMaxWorkGroupSize : InheritableAttr {
1297
1287
ExprArgument<"ZDim">];
1298
1288
let LangOpts = [SYCLIsDevice, SYCLIsHost];
1299
1289
let Subjects = SubjectList<[Function], ErrorDiag>;
1300
- let PragmaAttributeSupport = 0;
1301
1290
let AdditionalMembers = [{
1302
1291
ArrayRef<const Expr *> dimensions() const {
1303
1292
return {getXDim(), getYDim(), getZDim()};
@@ -1322,7 +1311,6 @@ def SYCLIntelMaxGlobalWorkDim : InheritableAttr {
1322
1311
let LangOpts = [SYCLIsDevice, SYCLIsHost];
1323
1312
let Subjects = SubjectList<[Function], ErrorDiag>;
1324
1313
let Documentation = [SYCLIntelMaxGlobalWorkDimAttrDocs];
1325
- let PragmaAttributeSupport = 0;
1326
1314
}
1327
1315
1328
1316
def SYCLIntelNoGlobalWorkOffset : InheritableAttr {
@@ -1332,7 +1320,6 @@ def SYCLIntelNoGlobalWorkOffset : InheritableAttr {
1332
1320
let LangOpts = [SYCLIsDevice, SYCLIsHost];
1333
1321
let Subjects = SubjectList<[Function], ErrorDiag>;
1334
1322
let Documentation = [SYCLIntelNoGlobalWorkOffsetAttrDocs];
1335
- let PragmaAttributeSupport = 0;
1336
1323
}
1337
1324
1338
1325
def SYCLIntelLoopFuse : InheritableAttr {
@@ -1413,7 +1400,6 @@ def IntelReqdSubGroupSize: InheritableAttr {
1413
1400
let Subjects = SubjectList<[Function, CXXMethod], ErrorDiag>;
1414
1401
let Documentation = [IntelReqdSubGroupSizeDocs];
1415
1402
let LangOpts = [OpenCL, SYCLIsDevice, SYCLIsHost];
1416
- let PragmaAttributeSupport = 0;
1417
1403
}
1418
1404
1419
1405
// This attribute is both a type attribute, and a declaration attribute (for
@@ -2133,7 +2119,6 @@ def SYCLIntelPipeIO : Attr {
2133
2119
let LangOpts = [SYCLIsDevice, SYCLIsHost];
2134
2120
let Subjects = SubjectList<[Var]>;
2135
2121
let Documentation = [SYCLIntelPipeIOAttrDocs];
2136
- let PragmaAttributeSupport = 0;
2137
2122
}
2138
2123
2139
2124
// Variadic integral arguments.
0 commit comments