OSDN Git Service

[X86] Fix typo in assert message.
authorCraig Topper <craig.topper@intel.com>
Tue, 26 Dec 2017 05:43:02 +0000 (05:43 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 26 Dec 2017 05:43:02 +0000 (05:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321450 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 10dcf21..321bc0e 100644 (file)
@@ -22088,7 +22088,7 @@ static SDValue LowerMUL(SDValue Op, const X86Subtarget &Subtarget,
   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
   if (VT == MVT::v4i32) {
     assert(Subtarget.hasSSE2() && !Subtarget.hasSSE41() &&
-           "Should not custom lower when pmuldq is available!");
+           "Should not custom lower when pmulld is available!");
 
     // Extract the odd parts.
     static const int UnpackMask[] = { 1, -1, 3, -1 };