diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-07-22 04:11:00 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-07-22 04:11:00 +0000 |
commit | 54cb789d3905644b2705ba00cb9e768b48ae27ca (patch) | |
tree | b57760152d0675257b17c75282c7a08ff83eed27 | |
parent | 5b1a7f224593c718facb461302da0d01139b2a40 (diff) | |
download | bcm5719-llvm-54cb789d3905644b2705ba00cb9e768b48ae27ca.tar.gz bcm5719-llvm-54cb789d3905644b2705ba00cb9e768b48ae27ca.zip |
RegisterPass: Unhide -polly-show and -polly-show-only
llvm-svn: 186806
-rw-r--r-- | polly/lib/RegisterPasses.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/polly/lib/RegisterPasses.cpp b/polly/lib/RegisterPasses.cpp index e970cd3d91f..7fc0960ee69 100644 --- a/polly/lib/RegisterPasses.cpp +++ b/polly/lib/RegisterPasses.cpp @@ -126,15 +126,16 @@ static cl::opt<bool> DeadCodeElim("polly-run-dce", 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"), |