diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-14 18:57:24 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-14 18:57:24 +0000 |
commit | 1e4ae2b329b9a7ec5b34299ac96fd2f8ef17967c (patch) | |
tree | 63f5ff14ac9689aaa65470974c6305964c795665 | |
parent | f0c71d434ac68149c1f2e9f5c348f455d6e8978e (diff) |
Mention the --tool-args option that Brian and Chris added.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13572 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/HowToSubmitABug.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index 46a5955d7a..b07d6cf1bb 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -272,15 +272,21 @@ Backend, and then link in the shared object it generates.</p> <p>To debug the JIT:</p> <div class="doc_code"> -<p><tt><b>bugpoint</b> -run-jit -output=[correct output file] [bytecode file] ---args -- [program arguments]</tt></p> +<pre> +bugpoint -run-jit -output=[correct output file] [bytecode file] \ + --tool-args -- [arguments to pass to lli] \ + --args -- [program arguments] +</pre> </div> <p>Similarly, to debug the LLC, one would run:</p> <div class="doc_code"> -<p><tt><b>bugpoint</b> -run-llc -output=[correct output file] [bytecode file] ---args -- [program arguments]</tt></p> +<pre> +bugpoint -run-llc -output=[correct output file] [bytecode file] \ + --tool-args -- [arguments to pass to llc] \ + --args -- [program arguments] +</pre> </div> <p><b>Special note:</b> if you are debugging MultiSource or SPEC tests that |