Skip to content

Commit 89c2bc7

Browse files
committed
better comment / help message
Created using spr 1.3.5-bogner
1 parent 9525bfb commit 89c2bc7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

llvm/docs/CommandGuide/llvm-mc.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ End-user Options
9494

9595
.. option:: --hex
9696

97-
Take hex bytes as input for the disassembler.
98-
Whitespace is ignored.
97+
Take raw hexadecimal bytes as input for disassembly. Whitespace is ignored.
9998

10099
.. option:: --large-code-model
101100

llvm/tools/llvm-mc/llvm-mc.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ static cl::opt<bool>
9595
cl::cat(MCCategory));
9696

9797
static cl::opt<bool>
98-
HexBytes("hex", cl::desc("Take hex bytes as input for the disassembler"),
98+
HexBytes("hex",
99+
cl::desc("Take raw hexadecimal bytes as input for disassembly. "
100+
"Whitespace is ignored"),
99101
cl::cat(MCCategory));
100102

101103
static cl::list<std::string>

0 commit comments

Comments
 (0)