1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Add a debug print

llvm-svn: 181647
This commit is contained in:
Nadav Rotem 2013-05-10 22:56:18 +00:00
parent b2b70d65a8
commit 4eab353eed

View File

@ -77,6 +77,8 @@ struct SLPVectorizer : public FunctionPass {
if (!DL)
return false;
DEBUG(dbgs()<<"SLP: Analyzing blocks in " << F.getName() << ".\n");
for (Function::iterator it = F.begin(), e = F.end(); it != e; ++it) {
BasicBlock *BB = it;
bool BBChanged = false;