[llvm-commits] [llvm] r104993 - /llvm/trunk/docs/LangRef.html

Dale Johannesen dalej at apple.com
Fri May 28 11:54:47 PDT 2010


Author: johannes
Date: Fri May 28 13:54:47 2010
New Revision: 104993

URL: http://llvm.org/viewvc/llvm-project?rev=104993&view=rev
Log:
Fix Data Layout description of floating point.


Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=104993&r1=104992&r2=104993&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Fri May 28 13:54:47 2010
@@ -1283,8 +1283,10 @@
 
   <dt><tt>f<i>size</i>:<i>abi</i>:<i>pref</i></tt></dt>
   <dd>This specifies the alignment for a floating point type of a given bit
-      <i>size</i>. The value of <i>size</i> must be either 32 (float) or 64
-      (double).</dd>
+      <i>size</i>. Only values of <i>size</i> that are supported by the target
+      will work.  32 (float) and 64 (double) are supported on all targets;
+      80 or 128 (different flavors of long double) are also supported on some
+      targets.
 
   <dt><tt>a<i>size</i>:<i>abi</i>:<i>pref</i></tt></dt>
   <dd>This specifies the alignment for an aggregate type of a given bit





More information about the llvm-commits mailing list