aboutsummaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2022-10-28 10:25:23 -0700
committerArthur Eubanks <aeubanks@google.com>2022-10-28 10:25:46 -0700
commitc7ca01b8d7d66e60d59e45340b9592fcd579ed38 (patch)
tree86e85b31a95c6d8c6197b8a66fc682034b500095 /polly
parentb9a77b56d83ac788beb7b1743e510ef8534354ca (diff)
downloadllvm-c7ca01b8d7d66e60d59e45340b9592fcd579ed38.zip
llvm-c7ca01b8d7d66e60d59e45340b9592fcd579ed38.tar.gz
llvm-c7ca01b8d7d66e60d59e45340b9592fcd579ed38.tar.bz2
[polly] Format RegisterPasses.cpp
Diffstat (limited to 'polly')
-rw-r--r--polly/lib/Support/RegisterPasses.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/polly/lib/Support/RegisterPasses.cpp b/polly/lib/Support/RegisterPasses.cpp
index 1f8653d..52ffa5f 100644
--- a/polly/lib/Support/RegisterPasses.cpp
+++ b/polly/lib/Support/RegisterPasses.cpp
@@ -72,19 +72,15 @@ static cl::opt<bool> PollyDetectOnly(
cl::desc("Only run scop detection, but no other optimizations"),
cl::cat(PollyCategory));
-enum PassPositionChoice {
- POSITION_EARLY,
- POSITION_BEFORE_VECTORIZER
-};
+enum PassPositionChoice { POSITION_EARLY, POSITION_BEFORE_VECTORIZER };
enum OptimizerChoice { OPTIMIZER_NONE, OPTIMIZER_ISL };
static cl::opt<PassPositionChoice> PassPosition(
"polly-position", cl::desc("Where to run polly in the pass pipeline"),
- cl::values(
- clEnumValN(POSITION_EARLY, "early", "Before everything"),
- clEnumValN(POSITION_BEFORE_VECTORIZER, "before-vectorizer",
- "Right before the vectorizer")),
+ cl::values(clEnumValN(POSITION_EARLY, "early", "Before everything"),
+ clEnumValN(POSITION_BEFORE_VECTORIZER, "before-vectorizer",
+ "Right before the vectorizer")),
cl::Hidden, cl::init(POSITION_BEFORE_VECTORIZER), cl::cat(PollyCategory));
static cl::opt<OptimizerChoice>