-
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
[JIT] ARM64 - Fixed regressions for GT_NEG
containment
#85230
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsResolves #85225
|
GT_NEG
containment
@dotnet/jit-contrib @jakobbotsch this is ready |
/azp run Fuzzlyn |
Azure Pipelines successfully started running 1 pipeline(s). |
Looks like there's still some examples, e.g.: // Generated by Fuzzlyn v1.5 on 2023-04-24 10:09:34
// Run on Arm64 Linux
// Seed: 15668805006347923926
// Reduced from 103.1 KiB to 0.3 KiB in 00:01:18
// Debug: Outputs False
// Release: Outputs True
public class Program
{
public static long s_7;
public static int[] s_11 = new int[]{0};
public static void Main()
{
s_11[0] = -2147483648;
var vr9 = (int)s_7 < (-s_11[0]);
System.Console.WriteLine(vr9);
}
} |
Updated again, this should fix it for good now. I was containing |
/azp run Fuzzlyn |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Fuzzlyn |
Azure Pipelines successfully started running 1 pipeline(s). |
CI failure is unrelated. Last Fuzzlyn runs succeeded, though it did catch an unrelated case in OSX which I reported here. |
Resolves #85225