Add some more missing options.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 7 Aug 2007 16:11:57 +0000 (16:11 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 7 Aug 2007 16:11:57 +0000 (16:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40892 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandGuide/lli.pod

index c20de355affe5f4bed6c3998ca49d7a86030cbfa..708cae2bb109fde0486883782c7ec951d05462ec 100644 (file)
@@ -67,14 +67,24 @@ operations are enabled or not.  The default set of attributes is set by the
 current CPU.  For a list of available attributes, use:
 B<llvm-as E<lt> /dev/null | llc -march=xyz -mattr=help>
 
+=item B<-fake-argv0>=I<executable>
+
+Override the C<argv[0]> value passed into the executing program.
+
 =item B<-force-interpreter>=I<{false,true}>
 
 If set to true, use the interpreter even if a just-in-time compiler is available
 for this architecture. Defaults to false.
 
-=item B<-fake-argv0>=I<executable>
+=item B<-load>=I<puginfilename>
 
-Override the C<argv[0]> value passed into the executing program.
+Causes B<lli> to load the plugin (shared object) named I<pluginfilename> and use
+it for optimization.
+
+=item B<-soft-float>
+
+Causes B<lli> to generate software floating point library calls instead of
+equivalent hardware instructions.
 
 =back