-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoptions.h
34 lines (29 loc) · 808 Bytes
/
options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <isl/arg.h>
#include <isl/ctx.h>
#if defined(__cplusplus)
extern "C" {
#endif
struct pet_options {
/* If autodetect is false, a scop delimited by pragmas is extracted,
* otherwise we take any scop that we can find.
*/
int autodetect;
int detect_conditional_assignment;
/* If encapsulate_dynamic_control is set, then any dynamic control
* in the input program will be encapsulated in macro statements.
* This means in particular that no statements with arguments
* will be created.
*/
int encapsulate_dynamic_control;
/* Support pencil builtins and pragmas */
int pencil;
int n_path;
const char **paths;
int n_define;
const char **defines;
unsigned signed_overflow;
};
ISL_ARG_CTX_DECL(pet_options, struct pet_options, pet_options_args)
#if defined(__cplusplus)
}
#endif