Add a debug print
authorNadav Rotem <nrotem@apple.com>
Fri, 10 May 2013 22:56:18 +0000 (22:56 +0000)
committerNadav Rotem <nrotem@apple.com>
Fri, 10 May 2013 22:56:18 +0000 (22:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181647 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Vectorize/SLPVectorizer.cpp

index cc30cc9278b75bc2be77dafa543685ab66f42805..4e89ac7c0934f8de0b7ca88147bea338399dca03 100644 (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;