-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Assertion failed 'op1 != nullptr' #60957
Labels
area-CodeGen-coreclr
CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Milestone
Comments
Tagging subscribers to this area: @JulieLeeMSFT Issue Details
#60816 turned three multi-dimensional System.Array helpers into JIT intrinsics. The implementation didn't handle the case where the array object
|
BruceForstall
added a commit
to BruceForstall/runtime
that referenced
this issue
Oct 28, 2021
The implementation of the MD array helpers didn't consider the possibility of the array object being something complex, like a function call return value. Also, add a test case covering many cases of invoking the MD array helpers. Fixes dotnet#60957
BruceForstall
added a commit
that referenced
this issue
Oct 28, 2021
The implementation of the MD array helpers didn't consider the possibility of the array object being something complex, like a function call return value. Also, add a test case covering many cases of invoking the MD array helpers. Fixes #60957
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-CodeGen-coreclr
CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
#60816 turned three multi-dimensional System.Array helpers into JIT intrinsics. The implementation didn't handle the case where the array object
this
pointer was not a simple local variable, e.g., was the result of a function call.The text was updated successfully, but these errors were encountered: