diff options
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/Bugpoint.html | 5 | ||||
-rw-r--r-- | llvm/docs/CommandGuide/bugpoint.pod | 10 |
2 files changed, 5 insertions, 10 deletions
diff --git a/llvm/docs/Bugpoint.html b/llvm/docs/Bugpoint.html index bdfd31379a9..eda22629eda 100644 --- a/llvm/docs/Bugpoint.html +++ b/llvm/docs/Bugpoint.html @@ -211,11 +211,6 @@ non-obvious ways. Here are some hints and tips:<p> you might try <tt>llvm-link -v</tt> on the same set of input files. If that also crashes, you may be experiencing a linker bug. -<li>If your program is <b>supposed</b> to crash, <tt>bugpoint</tt> will be - confused. One way to deal with this is to cause bugpoint to ignore the exit - code from your program, by giving it the <tt>-check-exit-code=false</tt> - option. - <li><tt>bugpoint</tt> is useful for proactively finding bugs in LLVM. Invoking <tt>bugpoint</tt> with the <tt>-find-bugs</tt> option will cause the list of specified optimizations to be randomized and applied to the diff --git a/llvm/docs/CommandGuide/bugpoint.pod b/llvm/docs/CommandGuide/bugpoint.pod index 12e32fbb2f5..d97f51fd23b 100644 --- a/llvm/docs/CommandGuide/bugpoint.pod +++ b/llvm/docs/CommandGuide/bugpoint.pod @@ -29,6 +29,11 @@ Load the dynamic shared object F<library> into the test program whenever it is run. This is useful if you are debugging programs which depend on non-LLVM libraries (such as the X or curses libraries) to run. +=item B<--append-exit-code>=I<{true,false}> + +Append the test programs exit code to the output file so that a change in exit +code is considered a test failure. Defaults to false. + =item B<--args> I<program args> Pass all arguments specified after -args to the test program whenever it runs. @@ -52,11 +57,6 @@ The "--" right after the B<--tool-args> option tells B<bugpoint> to consider any options starting with C<-> to be part of the B<--tool-args> option, not as options to B<bugpoint> itself. (See B<--args>, above.) -=item B<--check-exit-code>=I<{true,false}> - -Assume a non-zero exit code or core dump from the test program is a failure. -Defaults to true. - =item B<--disable-{dce,simplifycfg}> Do not run the specified passes to clean up and reduce the size of the test |