-
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
Vector256 assert is firing for crossgen'd SPCL #90265
Comments
/cc @mangod9 |
That optimization prevents the runtime from jumping to V256 immediately. Will send a PR restoring it, as well as the assert. Hopefully, it was just an unnecessary removal and the tests the original PR was supposed to fix remain fixed. If not, then we'll have a deeper problem in our hands to look at. |
PR #90278 addressed this issue and things should work "normally" again. In other words, |
Is this still an issue? I tried reproducing it with just calling the main build script as mentioned here (#89986 (comment)), but to no avail. My builds all went fine, both with and without the Crossgen2 |
Closing for now since it hasn't been reproducible anymore. Will reopen if it happens again. |
See #89986 for short term fix.RevertedFrom @tannergooding at #89986 (comment)
In #89223 the following optimization flag was removed. Placing this back fixes this failure. However, there is likely some other underlying issue to investigate. See #90278 for revert of changes from #89223.
Immediate work around is to disable R2R:
DOTNET_ReadyToRun=0
Example of stack
/cc @ivdiazsa @trylek
The text was updated successfully, but these errors were encountered: