diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:57:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:57:23 +0000 |
commit | 9d7eeb6f9631c438088c6313f6030a219ec1e2b7 (patch) | |
tree | f068ce5e3ab3088650475f2ef6fb9a7fb645841b /llvm/docs/CommandGuide/bugpoint.html | |
parent | 4b3da850f4cf4524b2cfa809d0cf70b9171b93ab (diff) | |
download | bcm5719-llvm-9d7eeb6f9631c438088c6313f6030a219ec1e2b7.tar.gz bcm5719-llvm-9d7eeb6f9631c438088c6313f6030a219ec1e2b7.zip |
Expand the --args section
llvm-svn: 9241
Diffstat (limited to 'llvm/docs/CommandGuide/bugpoint.html')
-rw-r--r-- | llvm/docs/CommandGuide/bugpoint.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/bugpoint.html b/llvm/docs/CommandGuide/bugpoint.html index 78e3ebdbd97..8d83863d9db 100644 --- a/llvm/docs/CommandGuide/bugpoint.html +++ b/llvm/docs/CommandGuide/bugpoint.html @@ -116,8 +116,17 @@ working properly.<p> run.<p> <li><tt>-args <arguments></tt><br> + All arguments specified after <tt>-args</tt> are passed into the - executed program when the program must be executed.<p> + executed program when the program must be executed. Note that if the + program takes an argument which starts with a '-', you should use: + <p> + <tt>bugpoint .... -args -- (the arguments here)</tt> + <p> + The "<tt>--</tt>" right after the <tt>-args</tt> option tells + <tt>bugpoint</tt> to consider any options starting with <tt>-</tt> to be + part of the <tt>-args</tt> option, not as options to <tt>bugpoint</tt> + itself.<p> <li><tt>-disable-(adce,dce,final-cleanup,simplifycfg)</tt><br> <tt>bugpoint</tt> uses several passes internally for cleanup routines to |