diff options
| author | Tobias Grosser <tobias@grosser.es> | 2014-07-09 10:50:10 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2014-07-09 10:50:10 +0000 |
| commit | 483a90d1bd2ebc8dcaa3c44a637751d31004fb5b (patch) | |
| tree | 6f265793e48eb909126c52a675c1ecdfb8eb5913 /polly/lib/Transform/ScheduleOptimizer.cpp | |
| parent | e31155fd1a4dd4affd5903da52667386b4bdea6d (diff) | |
| download | bcm5719-llvm-483a90d1bd2ebc8dcaa3c44a637751d31004fb5b.tar.gz bcm5719-llvm-483a90d1bd2ebc8dcaa3c44a637751d31004fb5b.zip | |
clang-format polly to avoid buildbot noise
llvm-svn: 212609
Diffstat (limited to 'polly/lib/Transform/ScheduleOptimizer.cpp')
| -rw-r--r-- | polly/lib/Transform/ScheduleOptimizer.cpp | 70 |
1 files changed, 34 insertions, 36 deletions
diff --git a/polly/lib/Transform/ScheduleOptimizer.cpp b/polly/lib/Transform/ScheduleOptimizer.cpp index f95a3b49a6a..16c6e54b812 100644 --- a/polly/lib/Transform/ScheduleOptimizer.cpp +++ b/polly/lib/Transform/ScheduleOptimizer.cpp @@ -41,49 +41,47 @@ namespace polly { bool DisablePollyTiling; } static cl::opt<bool, true> -DisableTiling("polly-no-tiling", cl::desc("Disable tiling in the scheduler"), - cl::location(polly::DisablePollyTiling), cl::init(false), - cl::ZeroOrMore, cl::cat(PollyCategory)); + DisableTiling("polly-no-tiling", + cl::desc("Disable tiling in the scheduler"), + cl::location(polly::DisablePollyTiling), cl::init(false), + cl::ZeroOrMore, cl::cat(PollyCategory)); static cl::opt<std::string> -OptimizeDeps("polly-opt-optimize-only", - cl::desc("Only a certain kind of dependences (all/raw)"), - cl::Hidden, cl::init("all"), cl::ZeroOrMore, - cl::cat(PollyCategory)); + OptimizeDeps("polly-opt-optimize-only", + cl::desc("Only a certain kind of dependences (all/raw)"), + cl::Hidden, cl::init("all"), cl::ZeroOrMore, + cl::cat(PollyCategory)); static cl::opt<std::string> -SimplifyDeps("polly-opt-simplify-deps", - cl::desc("Dependences should be simplified (yes/no)"), cl::Hidden, - cl::init("yes"), cl::ZeroOrMore, cl::cat(PollyCategory)); - -static cl::opt<int> -MaxConstantTerm("polly-opt-max-constant-term", - cl::desc("The maximal constant term allowed (-1 is unlimited)"), - cl::Hidden, cl::init(20), cl::ZeroOrMore, - cl::cat(PollyCategory)); - -static cl::opt<int> -MaxCoefficient("polly-opt-max-coefficient", - cl::desc("The maximal coefficient allowed (-1 is unlimited)"), - cl::Hidden, cl::init(20), cl::ZeroOrMore, - cl::cat(PollyCategory)); + SimplifyDeps("polly-opt-simplify-deps", + cl::desc("Dependences should be simplified (yes/no)"), + cl::Hidden, cl::init("yes"), cl::ZeroOrMore, + cl::cat(PollyCategory)); -static cl::opt<std::string> -FusionStrategy("polly-opt-fusion", - cl::desc("The fusion strategy to choose (min/max)"), cl::Hidden, - cl::init("min"), cl::ZeroOrMore, cl::cat(PollyCategory)); +static cl::opt<int> MaxConstantTerm( + "polly-opt-max-constant-term", + cl::desc("The maximal constant term allowed (-1 is unlimited)"), cl::Hidden, + cl::init(20), cl::ZeroOrMore, cl::cat(PollyCategory)); + +static cl::opt<int> MaxCoefficient( + "polly-opt-max-coefficient", + cl::desc("The maximal coefficient allowed (-1 is unlimited)"), cl::Hidden, + cl::init(20), cl::ZeroOrMore, cl::cat(PollyCategory)); + +static cl::opt<std::string> FusionStrategy( + "polly-opt-fusion", cl::desc("The fusion strategy to choose (min/max)"), + cl::Hidden, cl::init("min"), cl::ZeroOrMore, cl::cat(PollyCategory)); static cl::opt<std::string> -MaximizeBandDepth("polly-opt-maximize-bands", - cl::desc("Maximize the band depth (yes/no)"), cl::Hidden, - cl::init("yes"), cl::ZeroOrMore, cl::cat(PollyCategory)); - -static cl::opt<int> -DefaultTileSize("polly-default-tile-size", - cl::desc("The default tile size (if not enough were provided by" - " --polly-tile-sizes)"), - cl::Hidden, cl::init(32), cl::ZeroOrMore, - cl::cat(PollyCategory)); + MaximizeBandDepth("polly-opt-maximize-bands", + cl::desc("Maximize the band depth (yes/no)"), cl::Hidden, + cl::init("yes"), cl::ZeroOrMore, cl::cat(PollyCategory)); + +static cl::opt<int> DefaultTileSize( + "polly-default-tile-size", + cl::desc("The default tile size (if not enough were provided by" + " --polly-tile-sizes)"), + cl::Hidden, cl::init(32), cl::ZeroOrMore, cl::cat(PollyCategory)); static cl::list<int> TileSizes("polly-tile-sizes", cl::desc("A tile size" |

