[llvm-commits] [polly] r170739 - /polly/branches/release_32/lib/CodeGen/IslAst.cpp

Tobias Grosser grosser at fim.uni-passau.de
Thu Dec 20 12:18:16 PST 2012


Author: grosser
Date: Thu Dec 20 14:18:16 2012
New Revision: 170739

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

Merged from: https://llvm.org/svn/llvm-project/polly/trunk@168714

Modified:
    polly/branches/release_32/lib/CodeGen/IslAst.cpp

Modified: polly/branches/release_32/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/lib/CodeGen/IslAst.cpp?rev=170739&r1=170738&r2=170739&view=diff
==============================================================================
--- polly/branches/release_32/lib/CodeGen/IslAst.cpp (original)
+++ polly/branches/release_32/lib/CodeGen/IslAst.cpp Thu Dec 20 14:18:16 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