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
Stepping into a R2R method while debugging for the first time that does not result in a deoptimized method.
Reproduction Steps
using System.Runtime.CompilerServices;
class Program
{
[MethodImpl(MethodImplOptions.AggressiveOptimization)]
static void Main()
{
Console.Write(5);
Console.Write(5);
}
}
When using a release runtime, step in 4 times, then out 1, then in 2 times
Expected behavior
Should be in the WriteSpan method.
Actual behavior
Ends up in the Flush method instead of the WriteSpan method.
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @tommcdon
See info in area-owners.md if you want to be subscribed.
Issue Details
Description
Stepping into a R2R method while debugging for the first time that does not result in a deoptimized method.
Reproduction Steps
using System.Runtime.CompilerServices;
class Program
{
[MethodImpl(MethodImplOptions.AggressiveOptimization)]
static void Main()
{
Console.Write(5);
Console.Write(5);
}
}
When using a release runtime, step in 4 times, then out 1, then in 2 times
Expected behavior
Should be in the WriteSpan method.
Actual behavior
Ends up in the Flush method instead of the WriteSpan method.
Description
Stepping into a R2R method while debugging for the first time that does not result in a deoptimized method.
Reproduction Steps
When using a release runtime, step in 4 times, then out 1, then in 2 times
Expected behavior
Should be in the
WriteSpan
method.Actual behavior
Ends up in the
Flush
method instead of theWriteSpan
method.Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response
The text was updated successfully, but these errors were encountered: