Skip to content

Commit c7ca01b

Browse files
committed
[polly] Format RegisterPasses.cpp
1 parent b9a77b5 commit c7ca01b

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

polly/lib/Support/RegisterPasses.cpp

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,15 @@ static cl::opt<bool> PollyDetectOnly(
7272
cl::desc("Only run scop detection, but no other optimizations"),
7373
cl::cat(PollyCategory));
7474

75-
enum PassPositionChoice {
76-
POSITION_EARLY,
77-
POSITION_BEFORE_VECTORIZER
78-
};
75+
enum PassPositionChoice { POSITION_EARLY, POSITION_BEFORE_VECTORIZER };
7976

8077
enum OptimizerChoice { OPTIMIZER_NONE, OPTIMIZER_ISL };
8178

8279
static cl::opt<PassPositionChoice> PassPosition(
8380
"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")),
8884
cl::Hidden, cl::init(POSITION_BEFORE_VECTORIZER), cl::cat(PollyCategory));
8985

9086
static cl::opt<OptimizerChoice>

0 commit comments

Comments
 (0)