@@ -12,14 +12,14 @@ DESCRIPTION
12
12
-----------
13
13
14
14
The :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
16
16
their ability to detect bugs.
17
17
18
18
If ``input `` is "``- ``", :program: `llvm-reduce ` reads from standard
19
19
input. Otherwise, it will read from the specified ``filenames ``.
20
20
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
23
23
the LLVM compiler infrastructure.
24
24
25
25
GENERIC OPTIONS
@@ -34,40 +34,40 @@ GENERIC OPTIONS
34
34
35
35
Abort if any reduction results in invalid IR
36
36
37
- .. option ::--delta-passes= <string >
37
+ .. option ::--delta-passes= <string >
38
38
39
39
Delta passes to run, separated by commas. By default, run all delta passes.
40
40
41
41
42
- .. option :: --in-place
42
+ .. option :: --in-place
43
43
44
44
WARNING: This option will replace your input file with the reduced version!
45
45
46
- .. option :: --ir-passes= <string >
46
+ .. option :: --ir-passes= <string >
47
47
48
48
A textual description of the pass pipeline, same as what's passed to `opt -passes `.
49
49
50
- .. option :: -j <uint >
50
+ .. option :: -j <uint >
51
51
52
52
Maximum number of threads to use to process chunks. Set to 1 to disable parallelism.
53
53
54
54
.. option :: --max-pass-iterations= <int >
55
55
56
56
Maximum number of times to run the full set of delta passes (default=5).
57
57
58
- .. option :: --mtriple= <string >
58
+ .. option :: --mtriple= <string >
59
59
60
60
Set the target triple.
61
61
62
62
.. option :: --preserve-debug-environment
63
63
64
64
Don't disable features used for crash debugging (crash reports, llvm-symbolizer and core dumps)
65
65
66
- .. option :: --print-delta-passes
66
+ .. option :: --print-delta-passes
67
67
68
68
Print list of delta passes, passable to --delta-passes as a comma separated liste.
69
69
70
- .. option :: --skip-delta-passes= <string >
70
+ .. option :: --skip-delta-passes= <string >
71
71
72
72
Delta passes to not run, separated by commas. By default, run all delta passes.
73
73
@@ -85,19 +85,19 @@ GENERIC OPTIONS
85
85
A lower granularity means that the reduction process operates at a more coarse-grained level,
86
86
while a higher granularity means that it operates at a more fine-grained level.
87
87
88
- .. option :: --test= <string >
88
+ .. option :: --test= <string >
89
89
90
90
Name of the interesting-ness test to be run.
91
91
92
- .. option :: --test-arg= <string >
92
+ .. option :: --test-arg= <string >
93
93
94
94
Arguments passed onto the interesting-ness test.
95
95
96
- .. option :: --verbose
96
+ .. option :: --verbose
97
97
98
98
Print extra debugging information.
99
-
100
- .. option :: --write-tmp-files-as-bitcode
99
+
100
+ .. option :: --write-tmp-files-as-bitcode
101
101
102
102
Always write temporary files as bitcode instead of textual IR.
103
103
0 commit comments