scop_add_break: try and merge filters
[pet.git] / options.h
blobe7bc7f7439e58cb9b90077a39fe067aa86f33dda
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;
20 ISL_ARG_CTX_DECL(pet_options, struct pet_options, pet_options_args)
22 #if defined(__cplusplus)
24 #endif