[llvm-commits] [llvm] r166925 - /llvm/trunk/docs/LangRef.html
Duncan Sands
baldrick at free.fr
Mon Oct 29 07:12:44 PDT 2012
Author: baldrick
Date: Mon Oct 29 09:12:44 2012
New Revision: 166925
URL: http://llvm.org/viewvc/llvm-project?rev=166925&view=rev
Log:
Loads and stores without an explicit alignment use the abi alignment not the
preferred alignment. Correct the documentation.
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=166925&r1=166924&r2=166925&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Oct 29 09:12:44 2012
@@ -5060,7 +5060,7 @@
<p>The optional constant <tt>align</tt> argument specifies the alignment of the
operation (that is, the alignment of the memory address). A value of 0 or an
- omitted <tt>align</tt> argument means that the operation has the preferential
+ omitted <tt>align</tt> argument means that the operation has the abi
alignment for the target. It is the responsibility of the code emitter to
ensure that the alignment information is correct. Overestimating the
alignment results in undefined behavior. Underestimating the alignment may
@@ -5141,7 +5141,7 @@
<p>The optional constant "align" argument specifies the alignment of the
operation (that is, the alignment of the memory address). A value of 0 or an
- omitted "align" argument means that the operation has the preferential
+ omitted "align" argument means that the operation has the abi
alignment for the target. It is the responsibility of the code emitter to
ensure that the alignment information is correct. Overestimating the
alignment results in an undefined behavior. Underestimating the alignment may
More information about the llvm-commits
mailing list