[llvm-commits] CVS: llvm/docs/CommandGuide/bugpoint.html

Brian Gaeke gaeke at cs.uiuc.edu
Tue May 4 16:13:00 PDT 2004


Changes in directory llvm/docs/CommandGuide:

bugpoint.html updated: 1.28 -> 1.29

---
Log message:

update command guide to have --tool-args


---
Diffs of the changes:  (+12 -0)

Index: llvm/docs/CommandGuide/bugpoint.html
diff -u llvm/docs/CommandGuide/bugpoint.html:1.28 llvm/docs/CommandGuide/bugpoint.html:1.29
--- llvm/docs/CommandGuide/bugpoint.html:1.28	Sun Apr 18 22:28:39 2004
+++ llvm/docs/CommandGuide/bugpoint.html	Tue May  4 16:13:35 2004
@@ -177,6 +177,18 @@
         part of the <tt>-args</tt> option, not as options to <tt>bugpoint</tt>
         itself.<p>
 
+	<li><tt>-tool-args <tool args></tt><br>
+	Pass all arguments specified after <tt>-tool-args</tt> to the
+	LLVM tool under test (llc, lli, etc.) whenever it runs.
+	You should use this option in the following way:
+        <p>
+        <tt>bugpoint <bugpoint args> -tool-args -- <tool args></tt>
+        <p>
+        The "<tt>--</tt>" right after the <tt>-tool-args</tt> option tells
+        <tt>bugpoint</tt> to consider any options starting with <tt>-</tt> to be
+        part of the <tt>-tool-args</tt> option, not as options to
+        <tt>bugpoint</tt> itself. (See <tt>-args</tt>, above.)<p>
+
 	<li><tt>-check-exit-code={true,false}</tt><br>
     Assume a non-zero exit code or core dump from the test program is
     a failure. Defaults to true.<p>





More information about the llvm-commits mailing list