diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-03 05:26:07 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-03 05:26:07 +0000 |
commit | 5590949f297780ad998d7bf5e579e25f28fc903b (patch) | |
tree | 9909355998e473d6471f2c056416c16cd562d6f9 | |
parent | 3e612b419a47dbbc6eff50334d3072b7b9cd3d8d (diff) | |
download | bcm5719-llvm-5590949f297780ad998d7bf5e579e25f28fc903b.tar.gz bcm5719-llvm-5590949f297780ad998d7bf5e579e25f28fc903b.zip |
Remove ZeroOrMore from the option description. We don't need it here.
llvm-svn: 178623
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 585a92a92f7..d3cb4f9c1c0 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -55,7 +55,7 @@ static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden, cl::init(false)); static cl::opt<bool> GenerateDwarfPubNamesSection("generate-dwarf-pubnames", - cl::Hidden, cl::ZeroOrMore, cl::init(false), + cl::Hidden, cl::init(false), cl::desc("Generate DWARF pubnames section")); namespace { |