summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-02-24 03:46:42 +0000
committerBill Wendling <isanbard@gmail.com>2007-02-24 03:46:42 +0000
commitfa8a0e5256bd7b13ab7859616c6983718877f3a2 (patch)
tree848c3efaaaade165892419f1d2bf4d2bf444cf16 /docs
parente748401b180d7041738e14d3896ac61ca4bdfcba (diff)
downloadllvm-fa8a0e5256bd7b13ab7859616c6983718877f3a2.tar.gz
llvm-fa8a0e5256bd7b13ab7859616c6983718877f3a2.tar.bz2
llvm-fa8a0e5256bd7b13ab7859616c6983718877f3a2.tar.xz
Added some more information on how to use "delta" to reduce testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34553 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/HowToSubmitABug.html16
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html
index f01c5c72a1..4aabf35058 100644
--- a/docs/HowToSubmitABug.html
+++ b/docs/HowToSubmitABug.html
@@ -81,7 +81,7 @@ information:</p>
<div class="doc_text">
-<p>More often than not, bugs in the compiler cause it to crash - often due to an
+<p>More often than not, bugs in the compiler cause it to crash&mdash;often due to an
assertion failure of some sort. If you are running <tt><b>opt</b></tt>
directly, and something crashes, jump to the section on
<a href="#passes">bugs in LLVM passes</a>. Otherwise, the most important
@@ -126,12 +126,16 @@ bunch of stuff, and should end with telling you that one of
<tt>llvm-gcc</tt> command that resulted in the crash, but add the
<tt>-save-temps</tt> option. The compiler will crash again, but it will leave
behind a <tt><i>foo</i>.i</tt> file (containing preprocessed C source code) and
-possibly <tt><i>foo</i>.s</tt> (containing LLVM assembly code), for each
+possibly <tt><i>foo</i>.s</tt> (containing LLVM assembly code) for each
compiled <tt><i>foo</i>.c</tt> file. Send us the <tt><i>foo</i>.i</tt> file,
-along with a brief description of the error it caused. A tool that might help
-you reduce a front-end testcase to a more manageable size is
-<a href="http://delta.tigris.org/">delta</a>.
-</p>
+along with a brief description of the error it caused.</p>
+
+<p>The <a href="http://delta.tigris.org/">delta</a> tool helps to reduce the
+preprocessed file down to the smallest amount of code that still replicates the
+problem. You're encouraged to use delta to reduce the code to make the
+developers' lives easier. <a
+href="http://gcc.gnu.org/wiki/A_guide_to_testcase_reduction">This website</a>
+has instructions on the best way to use delta.</p>
</div>