[llvm-commits] [llvm] r119370 - in /llvm/trunk/docs/CommandGuide: llc.pod lli.pod

Peter Collingbourne peter at pcc.me.uk
Tue Nov 16 11:40:13 PST 2010


Author: pcc
Date: Tue Nov 16 13:40:13 2010
New Revision: 119370

URL: http://llvm.org/viewvc/llvm-project?rev=119370&view=rev
Log:
Document -enable-no-infs-fp-math and -enable-no-nans-fp-math command line options

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

Modified: llvm/trunk/docs/CommandGuide/llc.pod
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llc.pod?rev=119370&r1=119369&r2=119370&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llc.pod (original)
+++ llvm/trunk/docs/CommandGuide/llc.pod Tue Nov 16 13:40:13 2010
@@ -84,6 +84,14 @@
 Note that this option can dramatically slow down code on some systems
 (e.g. X86).
 
+=item B<--enable-no-infs-fp-math>
+
+Enable optimizations that assume no Inf values.
+
+=item B<--enable-no-nans-fp-math>
+
+Enable optimizations that assume no NAN values.
+
 =item B<--enable-unsafe-fp-math>
 
 Enable optimizations that make unsafe assumptions about IEEE math (e.g. that

Modified: llvm/trunk/docs/CommandGuide/lli.pod
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/lli.pod?rev=119370&r1=119369&r2=119370&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/lli.pod (original)
+++ llvm/trunk/docs/CommandGuide/lli.pod Tue Nov 16 13:40:13 2010
@@ -102,10 +102,13 @@
 
 Disable optimizations that may increase floating point precision.
 
-=item B<-enable-finite-only-fp-math>
+=item B<-enable-no-infs-fp-math>
 
-Enable optimizations that assumes only finite floating point math. That is,
-there is no NAN or Inf values.
+Enable optimizations that assume no Inf values.
+
+=item B<-enable-no-nans-fp-math>
+
+Enable optimizations that assume no NAN values.
 
 =item B<-enable-unsafe-fp-math>
 





More information about the llvm-commits mailing list