diff options
author | Jinsong Ji <jji@us.ibm.com> | 2019-09-17 21:09:41 +0000 |
---|---|---|
committer | Jinsong Ji <jji@us.ibm.com> | 2019-09-17 21:09:41 +0000 |
commit | 0c8e4a2e0d42b6af8a98e5f2b212f2a4954f5f95 (patch) | |
tree | 94c0d8478a3f7864b199360a4ec2ebe428a666f8 | |
parent | a08d5a4b0ebd44dc64f41049ed4e97a3c6d31498 (diff) | |
download | bcm5719-llvm-0c8e4a2e0d42b6af8a98e5f2b212f2a4954f5f95.tar.gz bcm5719-llvm-0c8e4a2e0d42b6af8a98e5f2b212f2a4954f5f95.zip |
Reland "[docs][Bugpoint]Add notes about multiple crashes"
Fix the warning.
Bugpoint.rst:124:Mismatch: both interpreted text role prefix and
reference suffix.
Note that the line no here is wrong and misleading,
the problem is in line 128, not 124.
llvm-svn: 372181
-rw-r--r-- | llvm/docs/Bugpoint.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/Bugpoint.rst b/llvm/docs/Bugpoint.rst index f3bb54cffb5..19efaf2bdee 100644 --- a/llvm/docs/Bugpoint.rst +++ b/llvm/docs/Bugpoint.rst @@ -121,6 +121,12 @@ non-obvious ways. Here are some hints and tips: miscompilation. Programs should be temporarily modified to disable outputs that are likely to vary from run to run. +* In the `crash debugger`_, ``bugpoint`` does not distiguish different crashes + during reduction. Thus, if new crash or miscompilation happens, ``bugpoint`` + will continue with the new crash instead. If you would like to stick to + particular crash, you should write check scripts to validate the error + message, see ``-compile-command`` in :doc:`CommandGuide/bugpoint`. + * In the code generator and miscompilation debuggers, debugging will go faster if you manually modify the program or its inputs to reduce the runtime, but still exhibit the problem. |