From 0a3322e5da56fc5808d2d98e83ad50a24c90eb05 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Mon, 29 Oct 2012 14:12:44 +0000 Subject: [PATCH] Loads and stores without an explicit alignment use the abi alignment not the preferred alignment. Correct the documentation. llvm-svn: 166925 --- llvm/docs/LangRef.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 874e12f..ed47f1f 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -5060,7 +5060,7 @@ IfUnequal:

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 undefined behavior. Underestimating the alignment may @@ -5141,7 +5141,7 @@ IfUnequal:

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 -- 2.7.4