@@ -12,14 +12,14 @@ DESCRIPTION
1212-----------
1313
1414The :program: `llvm-reduce ` tool project that can be used for reducing the size of LLVM test cases.
15- It works by removing redundant or unnecessary code from LLVM test cases while still preserving
15+ It works by removing redundant or unnecessary code from LLVM test cases while still preserving
1616their ability to detect bugs.
1717
1818If ``input `` is "``- ``", :program: `llvm-reduce ` reads from standard
1919input. Otherwise, it will read from the specified ``filenames ``.
2020
21- LLVM-Reduce is a useful tool for reducing the size and
22- complexity of LLVM test cases, making it easier to identify and debug issues in
21+ LLVM-Reduce is a useful tool for reducing the size and
22+ complexity of LLVM test cases, making it easier to identify and debug issues in
2323the LLVM compiler infrastructure.
2424
2525GENERIC OPTIONS
@@ -34,40 +34,40 @@ GENERIC OPTIONS
3434
3535 Abort if any reduction results in invalid IR
3636
37- .. option ::--delta-passes= <string >
37+ .. option ::--delta-passes= <string >
3838
3939 Delta passes to run, separated by commas. By default, run all delta passes.
4040
4141
42- .. option :: --in-place
42+ .. option :: --in-place
4343
4444 WARNING: This option will replace your input file with the reduced version!
4545
46- .. option :: --ir-passes= <string >
46+ .. option :: --ir-passes= <string >
4747
4848 A textual description of the pass pipeline, same as what's passed to `opt -passes `.
4949
50- .. option :: -j <uint >
50+ .. option :: -j <uint >
5151
5252 Maximum number of threads to use to process chunks. Set to 1 to disable parallelism.
5353
5454.. option :: --max-pass-iterations= <int >
5555
5656 Maximum number of times to run the full set of delta passes (default=5).
5757
58- .. option :: --mtriple= <string >
58+ .. option :: --mtriple= <string >
5959
6060 Set the target triple.
6161
6262.. option :: --preserve-debug-environment
6363
6464 Don't disable features used for crash debugging (crash reports, llvm-symbolizer and core dumps)
6565
66- .. option :: --print-delta-passes
66+ .. option :: --print-delta-passes
6767
6868 Print list of delta passes, passable to --delta-passes as a comma separated liste.
6969
70- .. option :: --skip-delta-passes= <string >
70+ .. option :: --skip-delta-passes= <string >
7171
7272 Delta passes to not run, separated by commas. By default, run all delta passes.
7373
@@ -85,19 +85,19 @@ GENERIC OPTIONS
8585 A lower granularity means that the reduction process operates at a more coarse-grained level,
8686 while a higher granularity means that it operates at a more fine-grained level.
8787
88- .. option :: --test= <string >
88+ .. option :: --test= <string >
8989
9090 Name of the interesting-ness test to be run.
9191
92- .. option :: --test-arg= <string >
92+ .. option :: --test-arg= <string >
9393
9494 Arguments passed onto the interesting-ness test.
9595
96- .. option :: --verbose
96+ .. option :: --verbose
9797
9898 Print extra debugging information.
99-
100- .. option :: --write-tmp-files-as-bitcode
99+
100+ .. option :: --write-tmp-files-as-bitcode
101101
102102 Always write temporary files as bitcode instead of textual IR.
103103
0 commit comments