Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2012-10-02 23:50:22 +0400
committerTobias Grosser <grosser@fim.uni-passau.de>2012-10-02 23:50:22 +0400
commitc845fef391ad2f8da41a67837733f5bbce24398c (patch)
treeeaa4d0b49d4647d6ffca8bc8b4e2c4c18905386c /polly/autoconf
parent6e551ae1a30e6ea2fe3be4332af6f58771cd5e20 (diff)
Detect the isl code generation feature correctly
llvm-svn: 165034
Diffstat (limited to 'polly/autoconf')
-rw-r--r--polly/autoconf/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/autoconf/configure.ac b/polly/autoconf/configure.ac
index 21991572b326..9ce989a94ec5 100644
--- a/polly/autoconf/configure.ac
+++ b/polly/autoconf/configure.ac
@@ -81,7 +81,7 @@ dnl Find Isl
find_lib_and_headers([isl], [isl/config.h], [isl], [required])
dnl Find whether ISL has a codegen.h file.
-find_lib_and_headers([isl], [isl/codegen.h], [isl])
+find_lib_and_headers([isl], [isl/ast.h], [isl])
AS_IF([test "x$isl_found" = "xyes"],
[AC_DEFINE([ISL_CODEGEN_FOUND],[1],[Define if ISL has a code generator])])