[llvm] r328105 - [LangRef] add note about format of FP types

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 21 08:22:09 PDT 2018


Author: spatel
Date: Wed Mar 21 08:22:09 2018
New Revision: 328105

URL: http://llvm.org/viewvc/llvm-project?rev=328105&view=rev
Log:
[LangRef] add note about format of FP types

Modified:
    llvm/trunk/docs/LangRef.rst

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=328105&r1=328104&r2=328105&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Wed Mar 21 08:22:09 2018
@@ -2577,6 +2577,10 @@ Floating-Point Types
    * - ``ppc_fp128``
      - 128-bit floating-point value (two 64-bits)
 
+The binary format of half, float, double, and fp128 correspond to the
+IEEE-754-2008 specifications for binary16, binary32, binary64, and binary128
+respectively.
+
 X86_mmx Type
 """"""""""""
 




More information about the llvm-commits mailing list