From 7953382dce0165bfeb2d456ce0eb99a9d4e868d6 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Wed, 3 Jun 2015 16:57:07 +0000 Subject: [PATCH] [dsymutil] Reflow option declarations to be more readable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238939 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/dsymutil/dsymutil.cpp | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/tools/dsymutil/dsymutil.cpp b/tools/dsymutil/dsymutil.cpp index 4fc91b029f6..79d232ff01f 100644 --- a/tools/dsymutil/dsymutil.cpp +++ b/tools/dsymutil/dsymutil.cpp @@ -30,25 +30,26 @@ using namespace llvm::cl; static opt InputFile(Positional, desc(""), init("a.out")); -static opt OutputFileOpt("o", desc("Specify the output file." - " default: .dwarf"), - value_desc("filename")); +static opt + OutputFileOpt("o", + desc("Specify the output file. default: .dwarf"), + value_desc("filename")); -static opt OsoPrependPath("oso-prepend-path", - desc("Specify a directory to prepend " - "to the paths of object files."), - value_desc("path")); +static opt OsoPrependPath( + "oso-prepend-path", + desc("Specify a directory to prepend to the paths of object files."), + value_desc("path")); static opt Verbose("v", desc("Verbosity level"), init(false)); -static opt NoOutput("no-output", desc("Do the link in memory, but do " - "not emit the result file."), - init(false)); +static opt + NoOutput("no-output", + desc("Do the link in memory, but do not emit the result file."), + init(false)); static opt ParseOnly("parse-only", - desc("Only parse the debug map, do not actaully link " - "the DWARF."), + desc("Only parse the debug map, do not actaully link the DWARF."), init(false)); } -- 2.11.0