We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9525bfb commit 89c2bc7Copy full SHA for 89c2bc7
llvm/docs/CommandGuide/llvm-mc.rst
@@ -94,8 +94,7 @@ End-user Options
94
95
.. option:: --hex
96
97
- Take hex bytes as input for the disassembler.
98
- Whitespace is ignored.
+ Take raw hexadecimal bytes as input for disassembly. Whitespace is ignored.
99
100
.. option:: --large-code-model
101
llvm/tools/llvm-mc/llvm-mc.cpp
@@ -95,7 +95,9 @@ static cl::opt<bool>
cl::cat(MCCategory));
static cl::opt<bool>
- HexBytes("hex", cl::desc("Take hex bytes as input for the disassembler"),
+ HexBytes("hex",
+ cl::desc("Take raw hexadecimal bytes as input for disassembly. "
+ "Whitespace is ignored"),
102
103
static cl::list<std::string>
0 commit comments