Fix formatting after recent cl:: changes
authorTobias Grosser <tobias@grosser.es>
Sun, 9 Oct 2016 08:31:35 +0000 (08:31 +0000)
committerTobias Grosser <tobias@grosser.es>
Sun, 9 Oct 2016 08:31:35 +0000 (08:31 +0000)
This fixes 'make check-polly'

llvm-svn: 283693

polly/lib/Support/RegisterPasses.cpp

index 5317863..a154ec9 100644 (file)
@@ -71,12 +71,13 @@ static cl::opt<PassPositionChoice> PassPosition(
     cl::Hidden, cl::init(POSITION_EARLY), cl::ZeroOrMore,
     cl::cat(PollyCategory));
 
-static cl::opt<OptimizerChoice> Optimizer(
-    "polly-optimizer", cl::desc("Select the scheduling optimizer"),
-    cl::values(clEnumValN(OPTIMIZER_NONE, "none", "No optimizer"),
-               clEnumValN(OPTIMIZER_ISL, "isl", "The isl scheduling optimizer")),
-    cl::Hidden, cl::init(OPTIMIZER_ISL), cl::ZeroOrMore,
-    cl::cat(PollyCategory));
+static cl::opt<OptimizerChoice>
+    Optimizer("polly-optimizer", cl::desc("Select the scheduling optimizer"),
+              cl::values(clEnumValN(OPTIMIZER_NONE, "none", "No optimizer"),
+                         clEnumValN(OPTIMIZER_ISL, "isl",
+                                    "The isl scheduling optimizer")),
+              cl::Hidden, cl::init(OPTIMIZER_ISL), cl::ZeroOrMore,
+              cl::cat(PollyCategory));
 
 enum CodeGenChoice { CODEGEN_FULL, CODEGEN_AST, CODEGEN_NONE };
 static cl::opt<CodeGenChoice> CodeGeneration(
@@ -91,9 +92,10 @@ static cl::opt<TargetChoice>
     Target("polly-target", cl::desc("The hardware to target"),
            cl::values(clEnumValN(TARGET_CPU, "cpu", "generate CPU code")
 #ifdef GPU_CODEGEN
-                      , clEnumValN(TARGET_GPU, "gpu", "generate GPU code")
+                          ,
+                      clEnumValN(TARGET_GPU, "gpu", "generate GPU code")
 #endif
-                      ),
+                          ),
            cl::init(TARGET_CPU), cl::ZeroOrMore, cl::cat(PollyCategory));
 
 VectorizerChoice polly::PollyVectorizerChoice;
@@ -103,8 +105,9 @@ static cl::opt<polly::VectorizerChoice, true> Vectorizer(
         clEnumValN(polly::VECTORIZER_NONE, "none", "No Vectorization"),
         clEnumValN(polly::VECTORIZER_POLLY, "polly",
                    "Polly internal vectorizer"),
-        clEnumValN(polly::VECTORIZER_STRIPMINE, "stripmine",
-                   "Strip-mine outer loops for the loop-vectorizer to trigger")),
+        clEnumValN(
+            polly::VECTORIZER_STRIPMINE, "stripmine",
+            "Strip-mine outer loops for the loop-vectorizer to trigger")),
     cl::location(PollyVectorizerChoice), cl::init(polly::VECTORIZER_NONE),
     cl::ZeroOrMore, cl::cat(PollyCategory));