summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-05-14 18:57:24 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-05-14 18:57:24 +0000
commitc050f9fbc31054485e22febaad6e9ebb4e8ee66a (patch)
treeeb3b130ff731f2ee0de2a99f47d6ea4a9af4522b /llvm
parent0c05819cf5a0f07aac08679a1dfe85c40f38ab6f (diff)
downloadbcm5719-llvm-c050f9fbc31054485e22febaad6e9ebb4e8ee66a.tar.gz
bcm5719-llvm-c050f9fbc31054485e22febaad6e9ebb4e8ee66a.zip
Mention the --tool-args option that Brian and Chris added.
llvm-svn: 13572
Diffstat (limited to 'llvm')
-rw-r--r--llvm/docs/HowToSubmitABug.html14
1 files changed, 10 insertions, 4 deletions
diff --git a/llvm/docs/HowToSubmitABug.html b/llvm/docs/HowToSubmitABug.html
index 46a5955d7a5..b07d6cf1bbe 100644
--- a/llvm/docs/HowToSubmitABug.html
+++ b/llvm/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
OpenPOWER on IntegriCloud