[llvm] r238939 - [dsymutil] Reflow option declarations to be more readable.
Frederic Riss
friss at apple.com
Wed Jun 3 09:57:07 PDT 2015
Author: friss
Date: Wed Jun 3 11:57:07 2015
New Revision: 238939
URL: http://llvm.org/viewvc/llvm-project?rev=238939&view=rev
Log:
[dsymutil] Reflow option declarations to be more readable.
Modified:
llvm/trunk/tools/dsymutil/dsymutil.cpp
Modified: llvm/trunk/tools/dsymutil/dsymutil.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/dsymutil.cpp?rev=238939&r1=238938&r2=238939&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/dsymutil.cpp (original)
+++ llvm/trunk/tools/dsymutil/dsymutil.cpp Wed Jun 3 11:57:07 2015
@@ -30,25 +30,26 @@ using namespace llvm::cl;
static opt<std::string> InputFile(Positional, desc("<input file>"),
init("a.out"));
-static opt<std::string> OutputFileOpt("o", desc("Specify the output file."
- " default: <input file>.dwarf"),
- value_desc("filename"));
-
-static opt<std::string> OsoPrependPath("oso-prepend-path",
- desc("Specify a directory to prepend "
- "to the paths of object files."),
- value_desc("path"));
+static opt<std::string>
+ OutputFileOpt("o",
+ desc("Specify the output file. default: <input file>.dwarf"),
+ value_desc("filename"));
+
+static opt<std::string> OsoPrependPath(
+ "oso-prepend-path",
+ desc("Specify a directory to prepend to the paths of object files."),
+ value_desc("path"));
static opt<bool> Verbose("v", desc("Verbosity level"), init(false));
-static opt<bool> NoOutput("no-output", desc("Do the link in memory, but do "
- "not emit the result file."),
- init(false));
+static opt<bool>
+ NoOutput("no-output",
+ desc("Do the link in memory, but do not emit the result file."),
+ init(false));
static opt<bool>
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));
}
More information about the llvm-commits
mailing list