forked from OSchip/llvm-project
[SLP][NFC]Adjust type in debug output loop.
The ReuseShuffleIndices indeces are integer, not unsigned, need to fix the type in the debug print loop.
This commit is contained in:
parent
d9d6e6a048
commit
71fe59212c
|
@ -2119,7 +2119,7 @@ private:
|
|||
if (ReuseShuffleIndices.empty())
|
||||
dbgs() << "Empty";
|
||||
else
|
||||
for (unsigned ReuseIdx : ReuseShuffleIndices)
|
||||
for (int ReuseIdx : ReuseShuffleIndices)
|
||||
dbgs() << ReuseIdx << ", ";
|
||||
dbgs() << "\n";
|
||||
dbgs() << "ReorderIndices: ";
|
||||
|
|
Loading…
Reference in New Issue