diff --git a/clang/test/SemaSYCL/sycl-device-intel-max-work-group-size-template.cpp b/clang/test/SemaSYCL/sycl-device-intel-max-work-group-size-template.cpp index 50cc361c19796..c5dac7f8ec637 100644 --- a/clang/test/SemaSYCL/sycl-device-intel-max-work-group-size-template.cpp +++ b/clang/test/SemaSYCL/sycl-device-intel-max-work-group-size-template.cpp @@ -38,7 +38,7 @@ int main() { // CHECK: ClassTemplateDecl {{.*}} {{.*}} KernelFunctor // CHECK: ClassTemplateSpecializationDecl {{.*}} {{.*}} class KernelFunctor definition // CHECK: CXXRecordDecl {{.*}} {{.*}} implicit class KernelFunctor -// SYCLIntelMaxWorkGroupSizeAttr {{.*}} +// CHECK: SYCLIntelMaxWorkGroupSizeAttr {{.*}} // CHECK: SubstNonTypeTemplateParmExpr {{.*}} // CHECK-NEXT: NonTypeTemplateParmDecl {{.*}} // CHECK-NEXT: IntegerLiteral{{.*}}4{{$}} @@ -49,7 +49,7 @@ int main() { // CHECK-NEXT: NonTypeTemplateParmDecl {{.*}} // CHECK-NEXT: IntegerLiteral{{.*}}4{{$}} -// Test that checks template parameter suppport on function. +// Test that checks template parameter support on function. template [[intel::max_work_group_size(N, N1, N2)]] void func3() {} @@ -61,7 +61,7 @@ int check() { // CHECK: FunctionTemplateDecl {{.*}} {{.*}} func3 // CHECK: NonTypeTemplateParmDecl {{.*}} {{.*}} referenced 'int' depth 0 index 0 N // CHECK: FunctionDecl {{.*}} {{.*}} func3 'void ()' -// SYCLIntelMaxWorkGroupSizeAttr {{.*}} +// CHECK: SYCLIntelMaxWorkGroupSizeAttr {{.*}} // CHECK: SubstNonTypeTemplateParmExpr {{.*}} // CHECK-NEXT: NonTypeTemplateParmDecl {{.*}} // CHECK-NEXT: IntegerLiteral{{.*}}8{{$}} diff --git a/clang/test/SemaSYCL/sycl-device-intel-reqd-work-group-size-template.cpp b/clang/test/SemaSYCL/sycl-device-intel-reqd-work-group-size-template.cpp index c297f4e15e091..32e07f7a2b3ee 100644 --- a/clang/test/SemaSYCL/sycl-device-intel-reqd-work-group-size-template.cpp +++ b/clang/test/SemaSYCL/sycl-device-intel-reqd-work-group-size-template.cpp @@ -49,7 +49,7 @@ int main() { // CHECK-NEXT: NonTypeTemplateParmDecl {{.*}} // CHECK-NEXT: IntegerLiteral{{.*}}1{{$}} -// Test that checks template parameter suppport on function. +// Test that checks template parameter support on function. template [[intel::reqd_work_group_size(N, N1, N2)]] void func3() {} diff --git a/clang/test/SemaSYCL/sycl-device-reqd-work-group-size-template.cpp b/clang/test/SemaSYCL/sycl-device-reqd-work-group-size-template.cpp index b981f524b2b0b..364dc7a8d9e40 100644 --- a/clang/test/SemaSYCL/sycl-device-reqd-work-group-size-template.cpp +++ b/clang/test/SemaSYCL/sycl-device-reqd-work-group-size-template.cpp @@ -49,7 +49,7 @@ int main() { // CHECK-NEXT: NonTypeTemplateParmDecl {{.*}} // CHECK-NEXT: IntegerLiteral{{.*}}1{{$}} -// Test that checks template parameter suppport on function. +// Test that checks template parameter support on function. template [[cl::reqd_work_group_size(N, N1, N2)]] void func3() {}