Fix an unused variable warning.

llvm-svn: 179931
This commit is contained in:
Nadav Rotem 2013-04-20 06:40:28 +00:00
parent 83c7c41bc2
commit 890387289e
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ struct SLPVectorizer : public FunctionPass {
// Vectorize trees that end at stores. // Vectorize trees that end at stores.
if (unsigned count = collectStores(BB, R)) { if (unsigned count = collectStores(BB, R)) {
(void)count;
DEBUG(dbgs()<<"SLP: Found " << count << " stores to vectorize.\n"); DEBUG(dbgs()<<"SLP: Found " << count << " stores to vectorize.\n");
BBChanged |= vectorizeStoreChains(R); BBChanged |= vectorizeStoreChains(R);
} }