10000 JIT: Fix handling for SIMD types in async transformation by jakobbotsch · Pull Request #115652 · dotnet/runtime · GitHub
[go: up one dir, main page]

Skip to content

JIT: Fix handling for SIMD types in async transformation #115652

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

Merged
merged 7 commits into from
May 21, 2025
Merged
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run jit-format
  • Loading branch information
jakobbotsch committed May 16, 2025
commit e9783ea58895d09663f21b3e580a5ebbfba5527d
2 changes: 1 addition & 1 deletion src/coreclr/jit/async.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ void AsyncTransformation::CopyReturnValueOnResumption(GenTreeCall*
{
GenTree* resultOffsetNode = m_comp->gtNewIconNode((ssize_t)resultOffset, TYP_I_IMPL);
GenTree* resultAddr = m_comp->gtNewOperNode(GT_ADD, TYP_BYREF, resultBase, resultOffsetNode);
GenTree* resultData = m_comp->gtNewLoadValueNode(layout.ReturnStructLayout, resultAddr, resultIndirFlags);
GenTree* resultData = m_comp->gtNewLoadValueNode(layout.ReturnStructLayout, resultAddr, resultIndirFlags);
GenTree* storeResult;
if ((callDefInfo.DefinitionNode->GetLclOffs() == 0) &&
ClassLayout::AreCompatible(resultLcl->GetLayout(), layout.ReturnStructLayout))
Expand Down
Loading
0