summaryrefslogtreecommitdiffstats
path: root/polly/lib/Pocc.cpp
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2011-10-23 20:59:44 +0000
committerTobias Grosser <grosser@fim.uni-passau.de>2011-10-23 20:59:44 +0000
commit967239c029753d176ae9930cb6e9a33af323bde0 (patch)
tree4e0bc5ce232ea8cd692c5adb62b208d26cf2f4ff /polly/lib/Pocc.cpp
parent67707b7131208f8c06bea56217d9fdf7b5a38698 (diff)
downloadbcm5719-llvm-967239c029753d176ae9930cb6e9a33af323bde0.tar.gz
bcm5719-llvm-967239c029753d176ae9930cb6e9a33af323bde0.zip
Only have a single option to disable tiling for both isl and Pocc optimzer
This also documents the new option on the website. llvm-svn: 142775
Diffstat (limited to 'polly/lib/Pocc.cpp')
-rw-r--r--polly/lib/Pocc.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/polly/lib/Pocc.cpp b/polly/lib/Pocc.cpp
index 793d090e5ba..11d01f74892 100644
--- a/polly/lib/Pocc.cpp
+++ b/polly/lib/Pocc.cpp
@@ -23,6 +23,7 @@
#include "polly/ScopInfo.h"
#include "polly/Dependences.h"
#include "polly/CodeGeneration.h"
+#include "polly/ScheduleOptimizer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Program.h"
@@ -41,11 +42,6 @@
using namespace llvm;
using namespace polly;
-static cl::opt<bool>
-PlutoTile("enable-pluto-tile",
- cl::desc("Enable pluto tiling for polly"), cl::Hidden,
- cl::value_desc("Pluto tiling enabled if true"),
- cl::init(false));
static cl::opt<std::string>
PlutoFuse("pluto-fuse",
cl::desc(""), cl::Hidden,
@@ -120,7 +116,7 @@ bool Pocc::runOnScop(Scop &S) {
arguments.push_back(PlutoFuse.c_str());
- if (PlutoTile)
+ if (!DisablePollyTiling)
arguments.push_back("--pluto-tile");
if (EnablePollyVector)
OpenPOWER on IntegriCloud