[polly] r186806 - RegisterPass: Unhide -polly-show and -polly-show-only
Tobias Grosser
grosser at fim.uni-passau.de
Sun Jul 21 21:11:01 PDT 2013
Author: grosser
Date: Sun Jul 21 23:11:00 2013
New Revision: 186806
URL: http://llvm.org/viewvc/llvm-project?rev=186806&view=rev
Log:
RegisterPass: Unhide -polly-show and -polly-show-only
Modified:
polly/trunk/lib/RegisterPasses.cpp
Modified: polly/trunk/lib/RegisterPasses.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/RegisterPasses.cpp?rev=186806&r1=186805&r2=186806&view=diff
==============================================================================
--- polly/trunk/lib/RegisterPasses.cpp (original)
+++ polly/trunk/lib/RegisterPasses.cpp Sun Jul 21 23:11:00 2013
@@ -126,15 +126,16 @@ static cl::opt<bool> DeadCodeElim("polly
cl::cat(PollyCategory));
static cl::opt<bool>
-PollyViewer("polly-show", cl::desc("Enable the Polly DOT viewer in -O3"),
- cl::Hidden, cl::value_desc("Run the Polly DOT viewer at -O3"),
+PollyViewer("polly-show",
+ cl::desc("Highlight the code regions that will be optimized in a "
+ "(CFG BBs and LLVM-IR instructions)"),
cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
-static cl::opt<bool> PollyOnlyViewer(
- "polly-show-only",
- cl::desc("Enable the Polly DOT viewer in -O3 (no BB content)"), cl::Hidden,
- cl::value_desc("Run the Polly DOT viewer at -O3 (no BB content"),
- cl::init(false), cl::cat(PollyCategory));
+static cl::opt<bool>
+PollyOnlyViewer("polly-show-only",
+ cl::desc("Highlight the code regions that will be optimized in "
+ "a (CFG only BBs)"),
+ cl::init(false), cl::cat(PollyCategory));
static cl::opt<bool>
PollyPrinter("polly-dot", cl::desc("Enable the Polly DOT printer in -O3"),
More information about the llvm-commits
mailing list