diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-04 21:13:35 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-04 21:13:35 +0000 |
commit | 48ef3f0fa13a75d83b39930081849643b28b78b9 (patch) | |
tree | fb7198516ab180a466b9a97bdb670e3d9932f500 /llvm/docs/CommandGuide/bugpoint.html | |
parent | 4a278f0b1b230270d6a542e4321d8d95d158e7b4 (diff) | |
download | bcm5719-llvm-48ef3f0fa13a75d83b39930081849643b28b78b9.tar.gz bcm5719-llvm-48ef3f0fa13a75d83b39930081849643b28b78b9.zip |
update command guide to have --tool-args
llvm-svn: 13359
Diffstat (limited to 'llvm/docs/CommandGuide/bugpoint.html')
-rw-r--r-- | llvm/docs/CommandGuide/bugpoint.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/bugpoint.html b/llvm/docs/CommandGuide/bugpoint.html index 23b9d7823ed..02cb7e8d810 100644 --- a/llvm/docs/CommandGuide/bugpoint.html +++ b/llvm/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 <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> |