Index: tools/llvm-objcopy/llvm-objcopy.cpp =================================================================== --- tools/llvm-objcopy/llvm-objcopy.cpp +++ tools/llvm-objcopy/llvm-objcopy.cpp @@ -75,22 +75,23 @@ static cl::opt OutputFilename(cl::Positional, cl::desc(""), cl::init("-")); static cl::opt - OutputFormat("O", cl::desc("set output format to one of the following:" + OutputFormat("O", cl::desc("Set output format to one of the following:" "\n\tbinary")); static cl::list ToRemove("remove-section", - cl::desc("Remove a specific section")); + cl::desc("Remove
"), + cl::value_desc("section")); static cl::alias ToRemoveA("R", cl::desc("Alias for remove-section"), cl::aliasopt(ToRemove)); static cl::opt StripSections("strip-sections", cl::desc("Remove all section headers")); static cl::opt - StripDWO("strip-dwo", cl::desc("remove all DWARF .dwo sections from file")); + StripDWO("strip-dwo", cl::desc("Remove all DWARF .dwo sections from file")); static cl::opt ExtractDWO( "extract-dwo", - cl::desc("remove all sections that are not DWARF .dwo sections from file")); + cl::desc("Remove all sections that are not DWARF .dwo sections from file")); static cl::opt SplitDWO("split-dwo", - cl::desc("equivalent to extract-dwo on the input file to " + cl::desc("Equivalent to extract-dwo on the input file to " ", then strip-dwo on the input file"), cl::value_desc("dwo-file"));