Remove legacy 64-bit intrinsic APIs
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / shared / System / Runtime / Intrinsics / X86 / Lzcnt.cs
index 0f1b8cf..b648ee8 100644 (file)
@@ -36,10 +36,5 @@ namespace System.Runtime.Intrinsics.X86
         ///   LZCNT reg, reg/m32
         /// </summary>
         public static uint LeadingZeroCount(uint value) => LeadingZeroCount(value);
-        /// <summary>
-        /// unsigned __int64 _lzcnt_u64 (unsigned __int64 a)
-        ///   LZCNT reg, reg/m64
-        /// </summary>
-        public static ulong LeadingZeroCount(ulong value) => LeadingZeroCount(value);
     }
 }