summaryrefslogtreecommitdiff
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-08-07 15:48:16 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-08-07 15:48:16 +0000
commitf0f4dae3b3bb9882537770afcc54ad460327e539 (patch)
treeb6b47a09c7d4a493c164460cea203b1388e3f494 /docs/CommandGuide
parent2c45228651bc3bfbec214343f6896841c3cb1d04 (diff)
downloadllvm-f0f4dae3b3bb9882537770afcc54ad460327e539.tar.gz
llvm-f0f4dae3b3bb9882537770afcc54ad460327e539.tar.bz2
llvm-f0f4dae3b3bb9882537770afcc54ad460327e539.tar.xz
Remove the -f option which is no longer supported, but add the -fake-argv0
option which is similar. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40891 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/lli.pod7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/CommandGuide/lli.pod b/docs/CommandGuide/lli.pod
index 1db47b71d6..c20de355af 100644
--- a/docs/CommandGuide/lli.pod
+++ b/docs/CommandGuide/lli.pod
@@ -72,12 +72,9 @@ B<llvm-as E<lt> /dev/null | llc -march=xyz -mattr=help>
If set to true, use the interpreter even if a just-in-time compiler is available
for this architecture. Defaults to false.
-=item B<-f>=I<name>
+=item B<-fake-argv0>=I<executable>
-Call the function named I<name> to start the program. Note: The
-function is assumed to have the C signature C<int> I<name> C<(int,
-char **, char **)>. If you try to use this option to call a function of
-incompatible type, undefined behavior may result. Defaults to C<main>.
+Override the C<argv[0]> value passed into the executing program.
=back