diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-10-18 23:38:13 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-10-18 23:38:13 +0000 |
commit | 7f27e0b0ce7f92b2eee5c59a2b6f4e605b1e6ea5 (patch) | |
tree | 94bb4a59fe05dd767156143757cc14db5d9e0c5b /llvm/lib/Transforms/IPO/PassManagerBuilder.cpp | |
parent | 61163151f7e1deef4fd223723e4d767c3503424e (diff) | |
download | bcm5719-llvm-7f27e0b0ce7f92b2eee5c59a2b6f4e605b1e6ea5.tar.gz bcm5719-llvm-7f27e0b0ce7f92b2eee5c59a2b6f4e605b1e6ea5.zip |
Mark some command line flags as hidden
llvm-svn: 193013
Diffstat (limited to 'llvm/lib/Transforms/IPO/PassManagerBuilder.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/PassManagerBuilder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp b/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp index b9660fab78f..0017c1b822a 100644 --- a/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp +++ b/llvm/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> |