aboutsummaryrefslogtreecommitdiff
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-05-04 21:13:35 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-05-04 21:13:35 +0000
commitcbc796e75da7039b4d9441dd4c8f75fcfada86fd (patch)
treec3de2fe4463d05c6e083ca78bf6578234ac514f8 /docs/CommandGuide
parent636df3d7ec51a8c6fd759a98853ff709ae54d64e (diff)
update command guide to have --tool-args
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/bugpoint.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/CommandGuide/bugpoint.html b/docs/CommandGuide/bugpoint.html
index 23b9d7823e..02cb7e8d81 100644
--- a/docs/CommandGuide/bugpoint.html
+++ b/docs/CommandGuide/bugpoint.html
@@ -177,6 +177,18 @@ non-obvious ways. Here are some hints and tips:<p>
part of the <tt>-args</tt> option, not as options to <tt>bugpoint</tt>
itself.<p>
+ <li><tt>-tool-args &lt;tool args&gt;</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 &lt;bugpoint args&gt; -tool-args -- &lt;tool args&gt;</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>