[X86] Make `llc --help` output readable again

Long `cl::value_desc()` is added right after the flag name,
before `cl::desc()` column. And thus the `cl::desc()` column,
for all flags, is padded to the right,
which makes the output unreadable.
This commit is contained in:
Roman Lebedev 2020-01-25 01:43:16 +03:00
parent 1df8549b26
commit 70cbf8c71c
No known key found for this signature in database
GPG Key ID: 083C3EBB4A1689E0
1 changed files with 7 additions and 7 deletions

View File

@ -85,13 +85,13 @@ cl::opt<unsigned> X86AlignBranchBoundary(
cl::opt<X86AlignBranchKind, true, cl::parser<std::string>> X86AlignBranch(
"x86-align-branch",
cl::desc("Specify types of branches to align (plus separated list of "
"types). The branches's types are combination of jcc, fused, "
"jmp, call, ret, indirect."),
cl::value_desc("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::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)"),
cl::location(X86AlignBranchKindLoc));
cl::opt<bool> X86AlignBranchWithin32BBoundaries(