1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[SLP] Fix printing of debug statement (NFC)

llvm-svn: 259212
This commit is contained in:
Matthew Simpson 2016-01-29 17:21:38 +00:00
parent 12c15fe609
commit f3b162d513

View File

@ -1782,7 +1782,7 @@ int BoUpSLP::getTreeCost() {
for (TreeEntry &TE : VectorizableTree) {
int C = getEntryCost(&TE);
DEBUG(dbgs() << "SLP: Adding cost " << C << " for bundle that starts with "
<< TE.Scalars[0] << " .\n");
<< *TE.Scalars[0] << ".\n");
Cost += C;
}