[SLP] fix typo in debug string; NFC
authorSanjay Patel <spatel@rotateright.com>
Mon, 7 Dec 2020 20:09:21 +0000 (15:09 -0500)
committerSanjay Patel <spatel@rotateright.com>
Mon, 7 Dec 2020 20:09:21 +0000 (15:09 -0500)
llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

index f78a4d9..e3f6d8c 100644 (file)
@@ -1727,7 +1727,7 @@ private:
         dbgs() << "NULL\n";
       dbgs() << "ReuseShuffleIndices: ";
       if (ReuseShuffleIndices.empty())
-        dbgs() << "Emtpy";
+        dbgs() << "Empty";
       else
         for (unsigned ReuseIdx : ReuseShuffleIndices)
           dbgs() << ReuseIdx << ", ";