[llvm-commits] [polly] r169100 - in /polly/trunk: lib/CodeGen/IslAst.cpp utils/checkout_cloog.sh

Tobias Grosser grosser at fim.uni-passau.de
Sat Dec 1 13:51:11 PST 2012


Author: grosser
Date: Sat Dec  1 15:51:10 2012
New Revision: 169100

URL: http://llvm.org/viewvc/llvm-project?rev=169100&view=rev
Log:
Update the recommended isl version

Recent changes in isl:

- Allow analysis of loops during code generation

This simplifies the detection of parallel loops.

- Simplify the way costumized ast printers are defined

This enables us to highlight parallel / vector loops in our debug output.

- Compile time improvements for codegen contexts that include parameters

- Various bug fixes

This update also gets us in sync for the isl 0.11 release.

Modified:
    polly/trunk/lib/CodeGen/IslAst.cpp
    polly/trunk/utils/checkout_cloog.sh

Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=169100&r1=169099&r2=169100&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Sat Dec  1 15:51:10 2012
@@ -150,7 +150,6 @@
   OS << result << "\n";
   isl_printer_free(P);
   isl_ast_node_free(Root);
-  isl_ast_print_options_free(Options);
 }
 
 /// Create the isl_ast from this program.

Modified: polly/trunk/utils/checkout_cloog.sh
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/utils/checkout_cloog.sh?rev=169100&r1=169099&r2=169100&view=diff
==============================================================================
--- polly/trunk/utils/checkout_cloog.sh (original)
+++ polly/trunk/utils/checkout_cloog.sh Sat Dec  1 15:51:10 2012
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 CLOOG_HASH="57470e76bfd58a0c38c598e816411663193e0f45"
-ISL_HASH="cc969a737d4f8de258a462c3cb1c063fe2f1c5cf"
+ISL_HASH="acc5df2f96fc0c04495cd237f0b5b5eb8822ed85"
 
 PWD=`pwd`
 





More information about the llvm-commits mailing list