summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2016-07-06 09:11:00 +0000
committerTobias Grosser <tobias@grosser.es>2016-07-06 09:11:00 +0000
commit932ec01328798f575e044e20394eccf562261caa (patch)
tree81bcd28b7c8fb73b58cec0a0b1bfcf42144a630a /polly/lib/CodeGen
parent5a4f2476fd960e85c100f939aac548d9f167fc7e (diff)
downloadbcm5719-llvm-932ec01328798f575e044e20394eccf562261caa.tar.gz
bcm5719-llvm-932ec01328798f575e044e20394eccf562261caa.zip
isl: isl-0.17.1-164-gcbba1b6
This is a regular maintenance update to ensure the latest version of isl is tested. Interesting Changes: - AST nodes and expressions are now printed as YAML llvm-svn: 274614
Diffstat (limited to 'polly/lib/CodeGen')
-rw-r--r--polly/lib/CodeGen/IslAst.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/IslAst.cpp b/polly/lib/CodeGen/IslAst.cpp
index d0cd02c079e..01523953fab 100644
--- a/polly/lib/CodeGen/IslAst.cpp
+++ b/polly/lib/CodeGen/IslAst.cpp
@@ -585,11 +585,11 @@ void IslAstInfo::printScop(raw_ostream &OS, Scop &S) const {
Options = isl_ast_print_options_set_print_for(Options, cbPrintFor, nullptr);
isl_printer *P = isl_printer_to_str(S.getIslCtx());
+ P = isl_printer_set_output_format(P, ISL_FORMAT_C);
P = isl_printer_print_ast_expr(P, RunCondition);
RtCStr = isl_printer_get_str(P);
P = isl_printer_flush(P);
P = isl_printer_indent(P, 4);
- P = isl_printer_set_output_format(P, ISL_FORMAT_C);
P = isl_ast_node_print(RootNode, P, Options);
AstStr = isl_printer_get_str(P);
OpenPOWER on IntegriCloud