[llvm-commits] CVS: llvm/docs/HowToSubmitABug.html

Misha Brukman brukman at cs.uiuc.edu
Fri May 14 13:57:02 PDT 2004


Changes in directory llvm/docs:

HowToSubmitABug.html updated: 1.19 -> 1.20

---
Log message:

Mention the --tool-args option that Brian and Chris added.


---
Diffs of the changes:  (+11 -5)

Index: llvm/docs/HowToSubmitABug.html
diff -u llvm/docs/HowToSubmitABug.html:1.19 llvm/docs/HowToSubmitABug.html:1.20
--- llvm/docs/HowToSubmitABug.html:1.19	Wed May 12 16:26:16 2004
+++ llvm/docs/HowToSubmitABug.html	Fri May 14 13:57:24 2004
@@ -272,15 +272,21 @@
 <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
@@ -341,7 +347,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a>
   <br>
-  Last modified: $Date: 2004/05/12 21:26:16 $
+  Last modified: $Date: 2004/05/14 18:57:24 $
 </address>
 
 </body>





More information about the llvm-commits mailing list