Rename CarryLessMultiply to CarrylessMultiply
authorFei Peng <fei.peng@intel.com>
Tue, 4 Sep 2018 22:56:42 +0000 (15:56 -0700)
committerTanner Gooding <tagoo@outlook.com>
Thu, 6 Sep 2018 18:00:21 +0000 (11:00 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/749d932b928ab2125cf2b98473a1bf4cde31ccd0

src/libraries/System.Runtime.Intrinsics/ref/System.Runtime.Intrinsics.cs

index 0d50943..ec60e25 100644 (file)
@@ -925,8 +925,8 @@ namespace System.Runtime.Intrinsics.X86
     {
         internal Pclmulqdq() { }
         public new static bool IsSupported { get { throw null; } }
-        public static Vector128<long> CarryLessMultiply(Vector128<long> left, Vector128<long> right, byte control) { throw null; }
-        public static Vector128<ulong> CarryLessMultiply(Vector128<ulong> left, Vector128<ulong> right, byte control) { throw null; }
+        public static Vector128<long> CarrylessMultiply(Vector128<long> left, Vector128<long> right, byte control) { throw null; }
+        public static Vector128<ulong> CarrylessMultiply(Vector128<ulong> left, Vector128<ulong> right, byte control) { throw null; }
     }
     public abstract class Popcnt : Sse42
     {