summaryrefslogtreecommitdiff
path: root/docs/CommandGuide/lli.pod
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-11-16 19:40:13 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-11-16 19:40:13 +0000
commit5a0a7ced12ed248c2a7b857d024d31030c627190 (patch)
treee5b8aa1aba7c4fc8d6de5539426169879e711ee1 /docs/CommandGuide/lli.pod
parent6904d7af1c796a77f31d84ea9de50784f3cf5503 (diff)
downloadllvm-5a0a7ced12ed248c2a7b857d024d31030c627190.tar.gz
llvm-5a0a7ced12ed248c2a7b857d024d31030c627190.tar.bz2
llvm-5a0a7ced12ed248c2a7b857d024d31030c627190.tar.xz
Document -enable-no-infs-fp-math and -enable-no-nans-fp-math command line options
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide/lli.pod')
-rw-r--r--docs/CommandGuide/lli.pod9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/CommandGuide/lli.pod b/docs/CommandGuide/lli.pod
index d368bec866..52a2721e7d 100644
--- a/docs/CommandGuide/lli.pod
+++ b/docs/CommandGuide/lli.pod
@@ -102,10 +102,13 @@ B<llvm-as E<lt> /dev/null | llc -march=xyz -mattr=help>
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>