-
Notifications
You must be signed in to change notification settings - Fork 787
[SYCL] Fix crash when kernel object field is an array of structs #2083
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This patch adds a 'top-level' struct InitListExpr for each element of a struct array. This is required to nest the InitListExprs of data members of each struct element correctly under the corresponding struct element. Signed-off-by: Elizabeth Andrews <[email protected]>
Signed-off-by: Elizabeth Andrews <[email protected]>
Also removed unnecessary check. Signed-off-by: Elizabeth Andrews <[email protected]>
Signed-off-by: Elizabeth Andrews <[email protected]>
Signed-off-by: Elizabeth Andrews <[email protected]>
Not sure why Jenkins builds are failing, especially since they all passed for previous commit. RHEL build failed with error Linux build and test failed for |
Signed-off-by: Elizabeth Andrews <[email protected]>
88116ba
Guess the fails were infrastructure related..Tests all pass now and latest commit didn't add any code. |
It should be compiltely rewritten Signed-off-by: Sidorov, Dmitry <[email protected]> Original commit: KhronosGroup/SPIRV-LLVM-Translator@0e3404e
This patch adds a 'top-level' struct InitListExpr for each element
of a struct array. This is required to nest the InitListExprs of data
members of each struct element correctly under the corresponding struct
element.
Signed-off-by: Elizabeth Andrews [email protected]