diff options
author | Craig Topper <craig.topper@intel.com> | 2018-04-01 21:54:26 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-04-01 21:54:26 +0000 |
commit | ed7a017b99eb3d94b3092cb8ec3f6933f33e2975 (patch) | |
tree | be1d49e0742a8e90260a6eebe3b5ec93a4ac3857 | |
parent | 37e281f49029aa57c71f40c67e06e953f1bd93de (diff) |
[LegacyPassManager] Make 'print-module-scope' cl::Hidden like the rest of the printing options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@328947 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/IR/LegacyPassManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/LegacyPassManager.cpp b/lib/IR/LegacyPassManager.cpp index 8bd9ed6ef0f..c13e710dd3b 100644 --- a/lib/IR/LegacyPassManager.cpp +++ b/lib/IR/LegacyPassManager.cpp @@ -86,7 +86,7 @@ static cl::opt<bool> PrintModuleScope("print-module-scope", cl::desc("When printing IR for print-[before|after]{-all} " "always print a module IR"), - cl::init(false)); + cl::init(false), cl::Hidden); static cl::list<std::string> PrintFuncsList("filter-print-funcs", cl::value_desc("function names"), |