diff options
author | Duncan Sands <baldrick@free.fr> | 2012-10-29 14:12:44 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-10-29 14:12:44 +0000 |
commit | f578922cbc20bc8792d380405b825f9224567031 (patch) | |
tree | 6810b6ec3743a823c1c01a48e98d91c463d9599d /docs/LangRef.html | |
parent | 2c7b44592f2db53805a51e497032c3c3db303091 (diff) | |
download | external_llvm-f578922cbc20bc8792d380405b825f9224567031.zip external_llvm-f578922cbc20bc8792d380405b825f9224567031.tar.gz external_llvm-f578922cbc20bc8792d380405b825f9224567031.tar.bz2 |
Loads and stores without an explicit alignment use the abi alignment not the
preferred alignment. Correct the documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 874e12f..ed47f1f 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -5060,7 +5060,7 @@ IfUnequal: <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 @@ IfUnequal: <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 |