Fix #61313
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Amazing, thank you for tackling this!
llvm/docs/CommandGuide/llvm-mc.rst | ||
---|---|---|
16 | for a specified. is missing a word at the end of the sentence | |
56 | Suggested: Apply the assemblers "lexer" to break the input into tokens and print each of them out. This is intended to help develop and test an assembler implementation. | |
60 | Suggested: Assemble assembly file (default), and print the result to assembly. This is useful to design and test instruction parsers, and can be a useful tool when combined with other llvm-mc flags. For example, this option may be useful to transcode assembly from different dialects, e.g. on Intel where you can use -output-asm-variant=1 to translate from AT&T to Intel assembly syntax. It can also be combined with --show-encoding to understand how instructions are encoded. | |
64 | Parse a series of hex bytes, and print the result out as assembly syntax. | |
133 | add: For example, on x86 targets --output-asm-variant=0 prints in AT&T syntax, and --output-asm-variant=1 prints in Intel/MASM syntax. |
for a specified. is missing a word at the end of the sentence