[PATCH] D73267: Fix helptext for opt/llc after 14fc20ca6
Nemanja Ivanovic via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 30 06:40:38 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6cc6e89c11de: Fix helptext for opt/llc after 14fc20ca6 (authored by nemanjai).
Changed prior to commit:
https://reviews.llvm.org/D73267?vs=239865&id=241438#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73267/new/
https://reviews.llvm.org/D73267
Files:
llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
Index: llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
===================================================================
--- llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
+++ llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
@@ -86,12 +86,14 @@
cl::opt<X86AlignBranchKind, true, cl::parser<std::string>> X86AlignBranch(
"x86-align-branch",
cl::desc(
- "Specify types of branches to align. The branches's types are "
- "combination of jcc, fused, jmp, call, ret, indirect. jcc indicates "
- "conditional jumps, fused indicates fused conditional jumps, jmp "
- "indicates unconditional jumps, call indicates direct and indirect "
- "calls, ret indicates rets, indirect indicates indirect jumps."),
- cl::value_desc("(plus separated list of types)"),
+ "Specify types of branches to align (plus separated list of types):"
+ "\njcc indicates conditional jumps"
+ "\nfused indicates fused conditional jumps"
+ "\njmp indicates direct unconditional jumps"
+ "\ncall indicates direct and indirect calls"
+ "\nret indicates rets"
+ "\nindirect indicates indirect unconditional jumps"),
+ cl::value_desc("jcc, fused, jmp, call, ret, indirect"),
cl::location(X86AlignBranchKindLoc));
cl::opt<bool> X86AlignBranchWithin32BBoundaries(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73267.241438.patch
Type: text/x-patch
Size: 1395 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200130/c4f3a8c4/attachment.bin>
More information about the llvm-commits
mailing list