Update assert to handle object[] element type#105287
Update assert to handle object[] element type#105287AaronRobinsonMSFT merged 2 commits intodotnet:mainfrom
object[] element type#105287Conversation
|
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 <jkotas@microsoft.com>
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?