diff options
| author | Bill Wendling <isanbard@gmail.com> | 2011-12-05 21:27:54 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2011-12-05 21:27:54 +0000 |
| commit | b437ab856168e8e61772ca59c965d96d0a614bde (patch) | |
| tree | d41788d6948c9c092dfb25a41c8fdf1915bec357 /llvm | |
| parent | 20cee2eba100d895ff147ba8401887cb0107f795 (diff) | |
| download | bcm5719-llvm-b437ab856168e8e61772ca59c965d96d0a614bde.tar.gz bcm5719-llvm-b437ab856168e8e61772ca59c965d96d0a614bde.zip | |
Move 'returns_twice' definition into alphabetical place.
llvm-svn: 145854
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/docs/LangRef.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 12c140f8237..911d8668b61 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -1216,6 +1216,12 @@ define void @f() optsize { ... } exception by calling the <tt>C++</tt> exception throwing methods, but may use the <tt>unwind</tt> instruction.</dd> + <dt><tt><b><a name="returns_twice">returns_twice</a></b></tt></dt> + <dd>This attribute indicates that this function can return twice. The + C <code>setjmp</code> is an example of such a function. The compiler + disables some optimizations (like tail calls) in the caller of these + functions.</dd> + <dt><tt><b><a name="ssp">ssp</a></b></tt></dt> <dd>This attribute indicates that the function should emit a stack smashing protector. It is in the form of a "canary"—a random value placed on @@ -1243,12 +1249,6 @@ define void @f() optsize { ... } show that no exceptions passes by it. This is normally the case for the ELF x86-64 abi, but it can be disabled for some compilation units.</dd> - - <dt><tt><b><a name="returns_twice">returns_twice</a></b></tt></dt> - <dd>This attribute indicates that this function can return - twice. The C <code>setjmp</code> is an example of such a function. - The compiler disables some optimizations (like tail calls) in the caller of - these functions.</dd> </dl> </div> |

