diff --git a/docs/LangRef.html b/docs/LangRef.html index f70b36360e2..5329a0134b6 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -61,7 +61,7 @@
  • Constants
    1. Simple Constants
    2. -
    3. Aggregate Constants
    4. +
    5. Complex Constants
    6. Global Variable and Function Addresses
    7. Undefined Values
    8. Constant Expressions
    9. @@ -1788,12 +1788,14 @@ the long double format on your target. All hexadecimal formats are big-endian -
      Aggregate Constants +
      -

      Aggregate constants arise from aggregation of simple constants -and smaller aggregate constants.

      +

      Complex constants are a (potentially recursive) combination of simple +constants and smaller complex constants.

      Structure constants
      @@ -2140,7 +2142,7 @@ return value.

         ret i32 5                       ; Return an integer value of 5
         ret void                        ; Return from a void function
      -  ret { i32, i8 } { i32 4, i8 2 } ; Return an aggregate of values 4 and 2
      +  ret { i32, i8 } { i32 4, i8 2 } ; Return an struct of values 4 and 2
       

      Note that the code generator does not yet fully support large