[PATCH] D46719: Improve llc help message for -split-dwarf-file
Tom Rix via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 10 12:56:25 PDT 2018
trixirt created this revision.
trixirt added a reviewer: dblaikie.
Herald added subscribers: llvm-commits, JDevlieghere, aprantl.
The help message changes from
-split-dwarf-file=<string> - Specify ...
to
-split-dwarf-file=<filename> - Specify ...
Repository:
rL LLVM
https://reviews.llvm.org/D46719
Files:
tools/llc/llc.cpp
Index: tools/llc/llc.cpp
===================================================================
--- tools/llc/llc.cpp
+++ tools/llc/llc.cpp
@@ -94,8 +94,8 @@
static cl::opt<std::string> SplitDwarfFile(
"split-dwarf-file",
- cl::desc(
- "Specify the name of the .dwo file to encode in the DWARF output"));
+ cl::desc("Specify the name of the .dwo file to encode in the DWARF output"),
+ cl::value_desc("filename"));
static cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
cl::desc("Do not verify input module"));
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46719.146198.patch
Type: text/x-patch
Size: 571 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180510/b1888210/attachment.bin>
More information about the llvm-commits
mailing list