-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[JitStressWithRandomNumbers] inliningVars.cmd fails #57914
Comments
Tagging subscribers to this area: @JulieLeeMSFT Issue DetailsRepro steps (x86 windows):
Failure log:
the issue from a quality week JitStress experiment.
|
🤔 |
Minimal repro: // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.CompilerServices;
namespace ConsoleApplication1
{
internal class Program
{
private static int Main()
{
int result = 100;
byte[] buffer = new byte[4];
buffer[0] = 0x11;
buffer[1] = 0x2;
buffer[2] = 0x3;
buffer[3] = 0x4;
if (buffer.Length > 0)
{
int shrt = Unsafe.ReadUnaligned<int>(ref buffer[0]);
if (shrt != 0x4030211)
result = 101;
Console.WriteLine(shrt);
Console.WriteLine(result);
Console.ReadKey();
}
return result;
}
}
} @AndyAyersMS is the problem here that IND node has invalid liberal VN or that |
Seems like we lose sight of the fact that the Suspect the issue lies in |
yes, already debugging it now 🙂 |
Example:
https://helixre8s23ayyeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-57900-merge-139159ef372d48dba3/JIT/1/console.27a10f26.log?sv=2019-07-07&se=2021-09-12T00%3A04%3A54Z&sr=c&sp=rl&sig=LVwZuDyZuoFiIx5A5sBz65LlH%2FmTz5q9NpOiuvvQaEU%3D
Repro steps (x86 windows):
Failure log:
the issue from a quality week JitStress experiment.
The text was updated successfully, but these errors were encountered: