Skip to content

Commit eaabb18

Browse files
committed
Fix typos
Signed-off-by: Soumi Manna <[email protected]>
1 parent bef85bd commit eaabb18

6 files changed

+6
-6
lines changed

clang/test/SemaSYCL/sycl-device-intel-max-global-work-dim-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int foo();
2323
constexpr int bar() { return 0; }
2424
[[intel::max_global_work_dim(bar() + 2)]] void func2(); // OK
2525

26-
// Test that checks template parameter suppport on member function of class template.
26+
// Test that checks template parameter support on member function of class template.
2727
template <int SIZE>
2828
class KernelFunctor {
2929
public:

clang/test/SemaSYCL/sycl-device-intel-max-work-group-size-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int foo();
2424
constexpr int bar() { return 0; }
2525
[[intel::max_work_group_size(bar() + 12, bar() + 12, bar() + 12)]] void func2(); // OK
2626

27-
// Test that checks template parameter suppport on member function of class template.
27+
// Test that checks template parameter support on member function of class template.
2828
template <int SIZE, int SIZE1, int SIZE2>
2929
class KernelFunctor {
3030
public:

clang/test/SemaSYCL/sycl-device-intel-reqd-work-group-size-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int foo();
2424
constexpr int bar() { return 0; }
2525
[[intel::reqd_work_group_size(bar() + 12, bar() + 12, bar() + 12)]] void func2(); // OK
2626

27-
// Test that checks template parameter suppport on member function of class template.
27+
// Test that checks template parameter support on member function of class template.
2828
template <int SIZE, int SIZE1, int SIZE2>
2929
class KernelFunctor {
3030
public:

clang/test/SemaSYCL/sycl-device-num_simd_work_items-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int foo();
2323
constexpr int bar() { return 0; }
2424
[[intel::num_simd_work_items(bar() + 12)]] void func2(); // OK
2525

26-
// Test that checks template parameter suppport on member function of class template.
26+
// Test that checks template parameter support on member function of class template.
2727
template <int SIZE>
2828
class KernelFunctor {
2929
public:

clang/test/SemaSYCL/sycl-device-reqd-sub-group-size-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int foo();
2323
constexpr int bar() { return 0; }
2424
[[intel::reqd_sub_group_size(bar() + 12)]] void func2(); // OK
2525

26-
// Test that checks template parameter suppport on member function of class template.
26+
// Test that checks template parameter support on member function of class template.
2727
template <int SIZE>
2828
class KernelFunctor {
2929
public:

clang/test/SemaSYCL/sycl-device-reqd-work-group-size-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int foo();
2424
constexpr int bar() { return 0; }
2525
[[cl::reqd_work_group_size(bar() + 12, bar() + 12, bar() + 12)]] void func2(); // OK
2626

27-
// Test that checks template parameter suppport on member function of class template.
27+
// Test that checks template parameter support on member function of class template.
2828
template <int SIZE, int SIZE1, int SIZE2>
2929
class KernelFunctor {
3030
public:

0 commit comments

Comments
 (0)