Remove legacy 64-bit intrinsic APIs
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / shared / System / Runtime / Intrinsics / X86 / Sse42.cs
index 8d0b59e..e997653 100644 (file)
@@ -52,10 +52,5 @@ namespace System.Runtime.Intrinsics.X86
         ///   CRC32 reg, reg/m32
         /// </summary>
         public static uint Crc32(uint crc, uint data) => Crc32(crc, data);
-        /// <summary>
-        /// unsigned __int64 _mm_crc32_u64 (unsigned __int64 crc, unsigned __int64 v)
-        ///   CRC32 reg, reg/m64
-        /// </summary>
-        public static ulong Crc32(ulong crc, ulong data) => Crc32(crc, data);
     }
 }