-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Fix hwintrinsicChild->isContained() assert #90556
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue Detailsnull
|
are you still working on this @EgorBo ? |
If not, please make it "Draft" |
Oops, didn't get notifications for this one -- yes, I'll finish it this week, fixes #90508 |
src/tests/JIT/Regression/JitBlue/Runtime_90508/Runtime_90508.cs
Outdated
Show resolved
Hide resolved
src/tests/JIT/Regression/JitBlue/Runtime_90508/Runtime_90508.cs
Outdated
Show resolved
Hide resolved
dd78322
to
07e86f1
Compare
Co-authored-by: Bruce Forstall <brucefo@microsoft.com>
@EgorBo, I reran the failed tests and it alls passed. Is it ready to merge? |
Should be ready now, waiting for spmi diffs |
@dotnet/jit-contrib PTAL, a fix for a containment bug (it used to "contain" some nodes such as locals while we can only contain constants and memory loads) |
v + Sse3.MoveAndDuplicate(Vector128.CreateScalarUnsafe(b)); | ||
|
||
[MethodImpl(MethodImplOptions.NoInlining)] | ||
private static Vector128<double> Test2(Vector128<double> v, double b) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: b
in Test2
and Test3
are unused.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, indeed, fixed!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/backport to release/8.0-staging |
Started backporting to release/8.0-staging: https://github.com/dotnet/runtime/actions/runs/7380228196 |
Fixes #90508