scan.cc: extract out subscript
[pet.git] / options.h
blobbad0be68ad040fb7d9d98c0e802648dc73d2a214
1 #include <isl/arg.h>
2 #include <isl/ctx.h>
4 #if defined(__cplusplus)
5 extern "C" {
6 #endif
8 struct pet_options {
9 /* If autodetect is false, a scop delimited by pragmas is extracted,
10 * otherwise we take any scop that we can find.
12 int autodetect;
13 int detect_conditional_assignment;
14 int n_path;
15 const char **paths;
16 int n_define;
17 const char **defines;
19 unsigned signed_overflow;
22 ISL_ARG_CTX_DECL(pet_options, struct pet_options, pet_options_args)
24 #if defined(__cplusplus)
26 #endif