From: Duncan Sands Date: Wed, 14 Oct 2009 20:01:39 +0000 (+0000) Subject: There seems to be no reason for opt's -S option to be hidden. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=81b0b64298fb06f225a9544440bb7b230ccf3c35;p=oota-llvm.git There seems to be no reason for opt's -S option to be hidden. Make it visible. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84127 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index fe0e03649dd..5bf39e5b294 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -66,8 +66,7 @@ NoOutput("disable-output", cl::desc("Do not write result bitcode file"), cl::Hidden); static cl::opt -OutputAssembly("S", - cl::desc("Write output as LLVM assembly"), cl::Hidden); +OutputAssembly("S", cl::desc("Write output as LLVM assembly")); static cl::opt NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden);