Skip to content

Commit f9c5822

Browse files
committed
[SYCL] Support intel::reqd_work_group_size (fix intel#8.3)
Signed-off-by: Aleksander Fadeev <[email protected]>
1 parent 421217a commit f9c5822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Basic/Attr.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -2417,7 +2417,7 @@ def ReqdWorkGroupSize : InheritableAttr {
24172417
let Spellings = [GNU<"reqd_work_group_size">,
24182418
CXX11<"cl","reqd_work_group_size">,
24192419
CXX11<"intel","reqd_work_group_size">];
2420-
let Args = [UnsignedArgument<"XDim">, DefaultIntArgument<"YDim", 1>,
2420+
let Args = [IntArgument<"XDim">, DefaultIntArgument<"YDim", 1>,
24212421
DefaultIntArgument<"ZDim", 1>];
24222422
let Subjects = SubjectList<[Function], ErrorDiag>;
24232423
let Documentation = [Undocumented];

0 commit comments

Comments
 (0)