diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-22 02:02:11 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-22 02:02:11 +0000 |
commit | 67606125f64f0f90ca4f82c472c90355c656b4dc (patch) | |
tree | 47df0f90b1f76b3ba88c24ccdcc5724ff3f0b6fe | |
parent | 60864a8ab6d3ce7b3aaccde7c295abbc616cd518 (diff) |
Preview nounwind function attribute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35256 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 60777ade19..346f858520 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -738,8 +738,11 @@ a power of 2.</p> target-specific</dd> <dt><tt>sret</tt></dt> <dd>This indicates that the parameter specifies the address of a structure - that is the return value of the function in the source program. - </dd> + that is the return value of the function in the source program.</dd> + <dt><tt>nounwind</tt></dt> + <dd>This function attribute indicates that the function type does not use + the unwind instruction and does not allow stack unwinding to propagate + through it.</dd> </dl> </div> |