[llvm-commits] [llvm] r40892 - /llvm/trunk/docs/CommandGuide/lli.pod

Reid Spencer rspencer at reidspencer.com
Tue Aug 7 09:11:57 PDT 2007


Author: reid
Date: Tue Aug  7 11:11:57 2007
New Revision: 40892

URL: http://llvm.org/viewvc/llvm-project?rev=40892&view=rev
Log:
Add some more missing options.

Modified:
    llvm/trunk/docs/CommandGuide/lli.pod

Modified: llvm/trunk/docs/CommandGuide/lli.pod
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/lli.pod?rev=40892&r1=40891&r2=40892&view=diff

==============================================================================
--- llvm/trunk/docs/CommandGuide/lli.pod (original)
+++ llvm/trunk/docs/CommandGuide/lli.pod Tue Aug  7 11:11:57 2007
@@ -67,14 +67,24 @@
 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
 





More information about the llvm-commits mailing list