summaryrefslogtreecommitdiffstats
path: root/polly/lib/Analysis/ScopDetection.cpp
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-07-09 10:50:10 +0000
committerTobias Grosser <tobias@grosser.es>2014-07-09 10:50:10 +0000
commit483a90d1bd2ebc8dcaa3c44a637751d31004fb5b (patch)
tree6f265793e48eb909126c52a675c1ecdfb8eb5913 /polly/lib/Analysis/ScopDetection.cpp
parente31155fd1a4dd4affd5903da52667386b4bdea6d (diff)
downloadbcm5719-llvm-483a90d1bd2ebc8dcaa3c44a637751d31004fb5b.tar.gz
bcm5719-llvm-483a90d1bd2ebc8dcaa3c44a637751d31004fb5b.zip
clang-format polly to avoid buildbot noise
llvm-svn: 212609
Diffstat (limited to 'polly/lib/Analysis/ScopDetection.cpp')
-rw-r--r--polly/lib/Analysis/ScopDetection.cpp88
1 files changed, 44 insertions, 44 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp
index fd49c9c50aa..53c5ed791fb 100644
--- a/polly/lib/Analysis/ScopDetection.cpp
+++ b/polly/lib/Analysis/ScopDetection.cpp
@@ -70,52 +70,52 @@ using namespace polly;
#define DEBUG_TYPE "polly-detect"
static cl::opt<bool>
-DetectScopsWithoutLoops("polly-detect-scops-in-functions-without-loops",
- cl::desc("Detect scops in functions without loops"),
- cl::Hidden, cl::init(false), cl::ZeroOrMore,
- cl::cat(PollyCategory));
+ DetectScopsWithoutLoops("polly-detect-scops-in-functions-without-loops",
+ cl::desc("Detect scops in functions without loops"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
static cl::opt<bool>
-DetectRegionsWithoutLoops("polly-detect-scops-in-regions-without-loops",
- cl::desc("Detect scops in regions without loops"),
- cl::Hidden, cl::init(false), cl::ZeroOrMore,
- cl::cat(PollyCategory));
-
-static cl::opt<std::string>
-OnlyFunction("polly-only-func",
- cl::desc("Only run on functions that contain a certain string"),
- cl::value_desc("string"), cl::ValueRequired, cl::init(""),
- cl::cat(PollyCategory));
-
-static cl::opt<std::string>
-OnlyRegion("polly-only-region",
- cl::desc("Only run on certain regions (The provided identifier must "
- "appear in the name of the region's entry block"),
- cl::value_desc("identifier"), cl::ValueRequired, cl::init(""),
- cl::cat(PollyCategory));
+ DetectRegionsWithoutLoops("polly-detect-scops-in-regions-without-loops",
+ cl::desc("Detect scops in regions without loops"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
+
+static cl::opt<std::string> OnlyFunction(
+ "polly-only-func",
+ cl::desc("Only run on functions that contain a certain string"),
+ cl::value_desc("string"), cl::ValueRequired, cl::init(""),
+ cl::cat(PollyCategory));
+
+static cl::opt<std::string> OnlyRegion(
+ "polly-only-region",
+ cl::desc("Only run on certain regions (The provided identifier must "
+ "appear in the name of the region's entry block"),
+ cl::value_desc("identifier"), cl::ValueRequired, cl::init(""),
+ cl::cat(PollyCategory));
static cl::opt<bool>
-IgnoreAliasing("polly-ignore-aliasing",
- cl::desc("Ignore possible aliasing of the array bases"),
- cl::Hidden, cl::init(false), cl::ZeroOrMore,
- cl::cat(PollyCategory));
+ IgnoreAliasing("polly-ignore-aliasing",
+ cl::desc("Ignore possible aliasing of the array bases"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
static cl::opt<bool>
-ReportLevel("polly-report",
- cl::desc("Print information about the activities of Polly"),
- cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
+ ReportLevel("polly-report",
+ cl::desc("Print information about the activities of Polly"),
+ cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
static cl::opt<bool>
-AllowNonAffine("polly-allow-nonaffine",
- cl::desc("Allow non affine access functions in arrays"),
- cl::Hidden, cl::init(false), cl::ZeroOrMore,
- cl::cat(PollyCategory));
+ AllowNonAffine("polly-allow-nonaffine",
+ cl::desc("Allow non affine access functions in arrays"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
static cl::opt<bool, true>
-TrackFailures("polly-detect-track-failures",
- cl::desc("Track failure strings in detecting scop regions"),
- cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore,
- cl::init(false), cl::cat(PollyCategory));
+ TrackFailures("polly-detect-track-failures",
+ cl::desc("Track failure strings in detecting scop regions"),
+ cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore,
+ cl::init(false), cl::cat(PollyCategory));
static cl::opt<bool> KeepGoing("polly-detect-keep-going",
cl::desc("Do not fail on the first error."),
@@ -123,16 +123,16 @@ static cl::opt<bool> KeepGoing("polly-detect-keep-going",
cl::cat(PollyCategory));
static cl::opt<bool, true>
-PollyDelinearizeX("polly-delinearize",
- cl::desc("Delinearize array access functions"),
- cl::location(PollyDelinearize), cl::Hidden, cl::ZeroOrMore,
- cl::init(false), cl::cat(PollyCategory));
+ PollyDelinearizeX("polly-delinearize",
+ cl::desc("Delinearize array access functions"),
+ cl::location(PollyDelinearize), cl::Hidden,
+ cl::ZeroOrMore, cl::init(false), cl::cat(PollyCategory));
static cl::opt<bool>
-VerifyScops("polly-detect-verify",
- cl::desc("Verify the detected SCoPs after each transformation"),
- cl::Hidden, cl::init(false), cl::ZeroOrMore,
- cl::cat(PollyCategory));
+ VerifyScops("polly-detect-verify",
+ cl::desc("Verify the detected SCoPs after each transformation"),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
bool polly::PollyTrackFailures = false;
bool polly::PollyDelinearize = false;
OpenPOWER on IntegriCloud