Skip to content

Commit 1a6f7a5

Browse files
authored
[SYCL][Graph] Fix unannotated fall-through between switch labels (#9966)
Together with [PR#9949](#9949): Fix post-commit failures after [PR#9728](#9728)
1 parent 2f260c2 commit 1a6f7a5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sycl/source/detail/graph_impl.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class node_impl {
125125
return createCGCopy<sycl::detail::CGExecKernel>();
126126
case sycl::detail::CG::CodeplayInteropTask:
127127
assert(false);
128+
break;
128129
// TODO: Uncomment this once we implement support for interop task so we can
129130
// test required changes to the CG class.
130131

@@ -153,6 +154,7 @@ class node_impl {
153154
return createCGCopy<sycl::detail::CGMemset2DUSM>();
154155
case sycl::detail::CG::CodeplayHostTask:
155156
assert(false);
157+
break;
156158
// TODO: Uncomment this once we implement support for host task so we can
157159
// test required changes to the CG class.
158160

0 commit comments

Comments
 (0)