diff --git a/docs/LangRef.html b/docs/LangRef.html index 06b886897f6..e6c94ca16f4 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -849,7 +849,7 @@ declare i32 @atoi(i8*) nounwind readonly
This indicates that the pointer parameter should really be passed by value to the function. The attribute implies that a hidden copy of the pointee is made between the caller and the callee, so the callee is unable - to modify the value in the callee. This attribute is only valid on llvm + to modify the value in the callee. This attribute is only valid on LLVM pointer arguments. It is generally used to pass structs and arrays by value, but is also valid on scalars (even though this is silly).
@@ -997,7 +997,7 @@ are given in this list:

  • v128:128:128 - 128-bit vector is 128-bit aligned
  • a0:0:1 - aggregates are 8-bit aligned
  • -

    When llvm is determining the alignment for a given type, it uses the +

    When LLVM is determining the alignment for a given type, it uses the following rules:

    1. If the type sought is an exact match for one of the specifications, that