scop_plus.cc:stmt_collect_arrays: avoid different signs comparison warning
[pet.git] / clang.h
blobd07b6b850998dcfcd88a550e9029b6e8ce6e078d
1 #ifndef PET_CLANG_H
2 #define PET_CLANG_H
4 #include <clang/AST/ASTContext.h>
5 #include <clang/AST/Decl.h>
6 #include <clang/AST/Expr.h>
7 #include <clang/AST/Type.h>
9 clang::QualType pet_clang_base_type(clang::QualType qt);
10 clang::RecordDecl *pet_clang_record_decl(clang::QualType T);
11 clang::Expr *pet_clang_strip_casts(clang::Expr *expr);
12 int pet_clang_get_type_size(clang::QualType qt, clang::ASTContext &ast_context);
13 clang::FunctionDecl *pet_clang_find_function_decl_with_body(
14 clang::FunctionDecl *fd);
16 #endif