add support for structs
[pet.git] / scop_plus.h
blobaaee70746591c7508f12a43cccda385a989a1640
1 #ifndef PET_SCOP_PLUS_H
2 #define PET_SCOP_PLUS_H
4 #include <set>
5 #include <vector>
6 #include <clang/AST/Decl.h>
8 #include "scop.h"
10 void pet_scop_collect_arrays(struct pet_scop *scop,
11 std::set<std::vector<clang::ValueDecl *> > &arrays);
13 #endif