From 5b65b4b2cc17c9b84e78515baaeab23d817d0817 Mon Sep 17 00:00:00 2001 From: Clinton Ingram Date: Thu, 28 Nov 2024 10:38:56 -0800 Subject: [PATCH] remove GFNI from NAOT opportunistic support list --- src/coreclr/tools/Common/InstructionSetHelpers.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/coreclr/tools/Common/InstructionSetHelpers.cs b/src/coreclr/tools/Common/InstructionSetHelpers.cs index 14940fc74db9e5..4dd60fb818363b 100644 --- a/src/coreclr/tools/Common/InstructionSetHelpers.cs +++ b/src/coreclr/tools/Common/InstructionSetHelpers.cs @@ -193,7 +193,6 @@ public static InstructionSetSupport ConfigureInstructionSetSupport(string instru optimisticInstructionSetSupportBuilder.AddSupportedInstructionSet("popcnt"); optimisticInstructionSetSupportBuilder.AddSupportedInstructionSet("lzcnt"); optimisticInstructionSetSupportBuilder.AddSupportedInstructionSet("serialize"); - optimisticInstructionSetSupportBuilder.AddSupportedInstructionSet("gfni"); // If AVX was enabled, we can opportunistically enable instruction sets which use the VEX encodings Debug.Assert(InstructionSet.X64_AVX == InstructionSet.X86_AVX);