From: Eric Christopher Date: Wed, 9 Mar 2011 19:46:51 +0000 (+0000) Subject: Make these options hidden to reduce the amount of text -help puts on the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f607abdf7bd57d4c2fa0d47108b5ffa1a02cf699;p=oota-llvm.git Make these options hidden to reduce the amount of text -help puts on the command line, they'll still be seen with -help-hidden. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127353 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 8bfef9855ca..cd170dff181 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -63,11 +63,13 @@ PassOptionList; // Print IR out before/after specified passes. static PassOptionList PrintBefore("print-before", - llvm::cl::desc("Print IR before specified passes")); + llvm::cl::desc("Print IR before specified passes"), + cl::Hidden); static PassOptionList PrintAfter("print-after", - llvm::cl::desc("Print IR after specified passes")); + llvm::cl::desc("Print IR after specified passes"), + cl::Hidden); static cl::opt PrintBeforeAll("print-before-all",