diff --git a/docs/LangRef.html b/docs/LangRef.html index 09903f1016b..09e557f2159 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2017,7 +2017,7 @@ primarily used to implement exception handling.
The 'unwind' intrinsic causes execution of the current function to +
The 'unwind' instruction causes execution of the current function to immediately halt. The dynamic call stack is then searched for the first invoke instruction on the call stack. Once found, execution continues at the "exceptional" destination block specified by the @@ -2337,7 +2337,8 @@ the left a specified number of bits.
Both arguments to the 'shl' instruction must be the same integer type.
+ href="#t_integer">integer type. 'var2' is treated as an +unsigned value.Both arguments to the 'lshr' instruction must be the same -integer type.
+integer type. 'var2' is treated as an +unsigned value.Both arguments to the 'ashr' instruction must be the same -integer type.
+integer type. 'var2' is treated as an +unsigned value.This instruction always performs an arithmetic shift right operation, @@ -2796,8 +2799,8 @@ choose to align the allocation on any convenient boundary.
Memory is allocated using the system "malloc" function, and -a pointer is returned. Allocating zero bytes is undefined. The result is null -if there is insufficient memory available.
+a pointer is returned. The result of a zero byte allocattion is undefined. The +result is null if there is insufficient memory available.Access to the memory pointed to by the pointer is no longer defined -after this instruction executes. If the pointer is null, the result is +after this instruction executes. If the pointer is null, the behavior is undefined.
Memory is allocated; a pointer is returned. 'alloca'd +
Memory is allocated; a pointer is returned. The operation is undefiend if +there is insufficient stack space for the allocation. 'alloca'd memory is automatically released when the function returns. The 'alloca' instruction is commonly used to represent automatic variables that must have an address available. When the function returns (either with the