You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AllocateSimpleClassAndCheckTypeNoHelper fails because
the object is allocated on the heap in R2R mode. The reason for that is
that we always use a helper for isinst in R2R mode and helper calls
cause us to assume the object escapes.
We don't have to use a helper in this case (even for R2R), #22086 tracks
fixing that.
For now the fix is not to check that the object was allocated on the stack
in this test case.
Fixes #22026.
AllocateSimpleClassAndCheckTypeNoHelper fails because
the object is allocated on the heap in R2R mode. The reason for that is
that we always use a helper for isinst in R2R mode and helper calls
cause us to assume the object escapes.
We don't have to use a helper in this case (even for R2R), #22086 tracks
fixing that.
For now the fix is not to check that the object was allocated on the stack
in this test case.
Fixes #22026.
The output shows:
FAILURE (AllocateSimpleClassAndCheckTypeNoHelper): unexpected allocation of 24 bytes
Started to fail afer dotnet/coreclr#21950.
CI example:.
PTAL @erozenfeld , cc @dotnet/jit-contrib
The text was updated successfully, but these errors were encountered: