[llvm-commits] [polly] r168714 - /polly/trunk/lib/CodeGen/IslAst.cpp

Sebastian Pop spop at codeaurora.org
Tue Nov 27 10:50:42 PST 2012


Author: spop
Date: Tue Nov 27 12:50:41 2012
New Revision: 168714

URL: http://llvm.org/viewvc/llvm-project?rev=168714&view=rev
Log:
make IslAstInfo::printScop compatible with CloogInfo::printScop

Modified:
    polly/trunk/lib/CodeGen/IslAst.cpp

Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=168714&r1=168713&r2=168714&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Tue Nov 27 12:50:41 2012
@@ -187,7 +187,7 @@
 void IslAstInfo::printScop(raw_ostream &OS) const {
   Function *F = S->getRegion().getEntry()->getParent();
 
-  OS << "isl ast for function '" << F->getName() << "':\n";
+  OS << F->getName() << "():\n";
 
   Ast->pprint(OS);
 }





More information about the llvm-commits mailing list