summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/IslCodeGeneration.cpp
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2015-03-30 17:28:57 +0000
committerTobias Grosser <tobias@grosser.es>2015-03-30 17:28:57 +0000
commit29e36dc0c688b2f1b1bdd4d9a319770ea83890ec (patch)
treebc2e07208abf3d95158a1e1b7729fadeaa412f4a /polly/lib/CodeGen/IslCodeGeneration.cpp
parent619190d5a7b7238775d35dabf7b4d16d742ad310 (diff)
downloadbcm5719-llvm-29e36dc0c688b2f1b1bdd4d9a319770ea83890ec.tar.gz
bcm5719-llvm-29e36dc0c688b2f1b1bdd4d9a319770ea83890ec.zip
Update isl to 285e92aea
This is mostly a set of schedule tree enhancements which are not yet directly useful to Polly. llvm-svn: 233567
Diffstat (limited to 'polly/lib/CodeGen/IslCodeGeneration.cpp')
-rw-r--r--polly/lib/CodeGen/IslCodeGeneration.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/IslCodeGeneration.cpp b/polly/lib/CodeGen/IslCodeGeneration.cpp
index 6190ac11a7e..a1defab536f 100644
--- a/polly/lib/CodeGen/IslCodeGeneration.cpp
+++ b/polly/lib/CodeGen/IslCodeGeneration.cpp
@@ -840,7 +840,9 @@ void IslNodeBuilder::createBlock(__isl_take isl_ast_node *Block) {
void IslNodeBuilder::create(__isl_take isl_ast_node *Node) {
switch (isl_ast_node_get_type(Node)) {
case isl_ast_node_error:
- llvm_unreachable("code generation error");
+ llvm_unreachable("code generation error");
+ case isl_ast_node_mark:
+ llvm_unreachable("Mark node unexpected");
case isl_ast_node_for:
createFor(Node);
return;
OpenPOWER on IntegriCloud