aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2013-10-18 23:38:13 +0000
committerNadav Rotem <nrotem@apple.com>2013-10-18 23:38:13 +0000
commitfe16848601bdde6e3a5e0860199169dd171222a4 (patch)
tree0c3d115f34bda11ee30034050502f1504505c6a9 /lib/Transforms/IPO
parentf47ffe08f9e4c51a8650e69c0964f656c0a582c1 (diff)
downloadexternal_llvm-fe16848601bdde6e3a5e0860199169dd171222a4.zip
external_llvm-fe16848601bdde6e3a5e0860199169dd171222a4.tar.gz
external_llvm-fe16848601bdde6e3a5e0860199169dd171222a4.tar.bz2
Mark some command line flags as hidden
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r--lib/Transforms/IPO/PassManagerBuilder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/IPO/PassManagerBuilder.cpp b/lib/Transforms/IPO/PassManagerBuilder.cpp
index b9660fa..0017c1b 100644
--- a/lib/Transforms/IPO/PassManagerBuilder.cpp
+++ b/lib/Transforms/IPO/PassManagerBuilder.cpp
@@ -29,7 +29,7 @@
using namespace llvm;
static cl::opt<bool>
-RunLoopVectorization("vectorize-loops",
+RunLoopVectorization("vectorize-loops", cl::Hidden,
cl::desc("Run the Loop vectorization passes"));
static cl::opt<bool>
@@ -38,11 +38,11 @@ LateVectorization("late-vectorize", cl::init(true), cl::Hidden,
"pipeline (after the inliner)"));
static cl::opt<bool>
-RunSLPVectorization("vectorize-slp",
+RunSLPVectorization("vectorize-slp", cl::Hidden,
cl::desc("Run the SLP vectorization passes"));
static cl::opt<bool>
-RunBBVectorization("vectorize-slp-aggressive",
+RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
cl::desc("Run the BB vectorization passes"));
static cl::opt<bool>