-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Update assert to handle object[]
element type
#105287
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
Update assert to handle object[]
element type
#105287
Conversation
Tagging subscribers to this area: @mangod9 |
The JIT is generating direct call to BTW, while stepping through this on Windows I ended up in this weird code: runtime/src/coreclr/vm/excep.cpp Lines 7354 to 7357 in 98b165d
|
I've noticed that recently too. This is a remainder of logging of a piece of stack into stresslog, see this in coreclr 3.1: |
Co-authored-by: Jan Kotas <[email protected]>
This was deleted in Deleting the rest #105346 |
I tried to debug this and it is mostly related to the SEH simulation on non-Windows. Particularly usage of |
Fixes #105186
@jakobbotsch this is very odd. This code path is the same on all platforms, but only seems to be taken with these tests on non-Windows platforms. That is the reason it didn't fail on Windows. Any ideas why exceptions are being thrown on non-Windows, but not on Windows?