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

Lang Hames lhames at gmail.com
Tue Oct 11 10:50:14 PDT 2011


Author: lhames
Date: Tue Oct 11 12:50:14 2011
New Revision: 141687

URL: http://llvm.org/viewvc/llvm-project?rev=141687&view=rev
Log:
Fixed docs to reflect the proper default value and behaviour of the natural stack alignment.

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=141687&r1=141686&r2=141687&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Oct 11 12:50:14 2011
@@ -1323,7 +1323,8 @@
   <dd>Specifies the natural alignment of the stack in bits. Alignment promotion
       of stack variables is limited to the natural stack alignment to avoid
       dynamic stack realignment. The stack alignment must be a multiple of
-      8-bits, and currently defaults to 128 bits if unspecified.</dd>
+      8-bits. If omitted, the natural stack alignment defaults to "unspecified",
+      which does not prevent any alignment promotions.</dd>
 
   <dt><tt>p:<i>size</i>:<i>abi</i>:<i>pref</i></tt></dt>
   <dd>This specifies the <i>size</i> of a pointer and its <i>abi</i> and





More information about the llvm-commits mailing list