link against isl libraries first
[pet.git] / expr_plus.h
blob29456846ce87a450cdc208d020d5593a8626f3cb
1 #ifndef PET_EXPR_PLUS_H
2 #define PET_EXPR_PLUS_H
4 #include <clang/AST/ASTContext.h>
5 #include <clang/AST/Type.h>
7 #include <isl/id.h>
9 #include <pet.h>
11 __isl_give pet_expr *pet_expr_access_from_index(clang::QualType qt,
12 __isl_take pet_expr *index, clang::ASTContext &ast_context);
13 __isl_give pet_expr *pet_expr_access_from_id(__isl_take isl_id *id,
14 clang::ASTContext &ast_context);
16 #endif