Remove legacy 64-bit intrinsic APIs
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / shared / System / Runtime / Intrinsics / X86 / Popcnt.cs
index c5dd18c..60d2899 100644 (file)
@@ -34,10 +34,5 @@ namespace System.Runtime.Intrinsics.X86
         ///   POPCNT reg, reg/m32
         /// </summary>
         public static uint PopCount(uint value) => PopCount(value);
-        /// <summary>
-        /// __int64 _mm_popcnt_u64 (unsigned __int64 a)
-        ///   POPCNT reg, reg/m64
-        /// </summary>
-        public static ulong PopCount(ulong value) => PopCount(value);
     }
 }