summaryrefslogtreecommitdiffstats
path: root/polly/lib/Analysis/Dependences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/Analysis/Dependences.cpp')
-rw-r--r--polly/lib/Analysis/Dependences.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/polly/lib/Analysis/Dependences.cpp b/polly/lib/Analysis/Dependences.cpp
index a9ae4b3d75a..c4e598141ff 100644
--- a/polly/lib/Analysis/Dependences.cpp
+++ b/polly/lib/Analysis/Dependences.cpp
@@ -39,17 +39,15 @@ using namespace llvm;
#define DEBUG_TYPE "polly-dependence"
-static cl::opt<int>
-OptComputeOut("polly-dependences-computeout",
- cl::desc("Bound the dependence analysis by a maximal amount of "
- "computational steps"),
- cl::Hidden, cl::init(250000), cl::ZeroOrMore,
- cl::cat(PollyCategory));
-
-static cl::opt<bool>
-LegalityCheckDisabled("disable-polly-legality",
- cl::desc("Disable polly legality check"), cl::Hidden,
- cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
+static cl::opt<int> OptComputeOut(
+ "polly-dependences-computeout",
+ cl::desc("Bound the dependence analysis by a maximal amount of "
+ "computational steps"),
+ cl::Hidden, cl::init(250000), cl::ZeroOrMore, cl::cat(PollyCategory));
+
+static cl::opt<bool> LegalityCheckDisabled(
+ "disable-polly-legality", cl::desc("Disable polly legality check"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
enum AnalysisType { VALUE_BASED_ANALYSIS, MEMORY_BASED_ANALYSIS };
OpenPOWER on IntegriCloud