@@ -72,19 +72,15 @@ static cl::opt<bool> PollyDetectOnly(
72
72
cl::desc (" Only run scop detection, but no other optimizations" ),
73
73
cl::cat(PollyCategory));
74
74
75
- enum PassPositionChoice {
76
- POSITION_EARLY,
77
- POSITION_BEFORE_VECTORIZER
78
- };
75
+ enum PassPositionChoice { POSITION_EARLY, POSITION_BEFORE_VECTORIZER };
79
76
80
77
enum OptimizerChoice { OPTIMIZER_NONE, OPTIMIZER_ISL };
81
78
82
79
static cl::opt<PassPositionChoice> PassPosition (
83
80
" polly-position" , cl::desc(" Where to run polly in the pass pipeline" ),
84
- cl::values(
85
- clEnumValN (POSITION_EARLY, " early" , " Before everything" ),
86
- clEnumValN(POSITION_BEFORE_VECTORIZER, " before-vectorizer" ,
87
- " Right before the vectorizer" )),
81
+ cl::values(clEnumValN(POSITION_EARLY, " early" , " Before everything" ),
82
+ clEnumValN(POSITION_BEFORE_VECTORIZER, " before-vectorizer" ,
83
+ " Right before the vectorizer" )),
88
84
cl::Hidden, cl::init(POSITION_BEFORE_VECTORIZER), cl::cat(PollyCategory));
89
85
90
86
static cl::opt<OptimizerChoice>
0 commit comments