[llvm-commits] [polly] r170746 - in /polly/branches/release_32: lib/CodeGen/IslAst.cpp utils/checkout_cloog.sh
Tobias Grosser
grosser at fim.uni-passau.de
Thu Dec 20 12:18:29 PST 2012
Author: grosser
Date: Thu Dec 20 14:18:29 2012
New Revision: 170746
URL: http://llvm.org/viewvc/llvm-project?rev=170746&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.
Merged from: https://llvm.org/svn/llvm-project/polly/trunk@169100
Modified:
polly/branches/release_32/lib/CodeGen/IslAst.cpp
polly/branches/release_32/utils/checkout_cloog.sh
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=170746&r1=170745&r2=170746&view=diff
==============================================================================
--- polly/branches/release_32/lib/CodeGen/IslAst.cpp (original)
+++ polly/branches/release_32/lib/CodeGen/IslAst.cpp Thu Dec 20 14:18:29 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/branches/release_32/utils/checkout_cloog.sh
URL: http://llvm.org/viewvc/llvm-project/polly/branches/release_32/utils/checkout_cloog.sh?rev=170746&r1=170745&r2=170746&view=diff
==============================================================================
--- polly/branches/release_32/utils/checkout_cloog.sh (original)
+++ polly/branches/release_32/utils/checkout_cloog.sh Thu Dec 20 14:18:29 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