diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-11-26 19:19:05 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-11-26 19:19:05 +0000 |
commit | 34f70d8252742eca87ff87e6771edcc4af38f283 (patch) | |
tree | 1d4aa0f7e65e8698dee85289c27c64c46a5d3e2d /docs | |
parent | be9ec3fc6acde01ee9697818699332a16d7a9851 (diff) | |
download | external_llvm-34f70d8252742eca87ff87e6771edcc4af38f283.zip external_llvm-34f70d8252742eca87ff87e6771edcc4af38f283.tar.gz external_llvm-34f70d8252742eca87ff87e6771edcc4af38f283.tar.bz2 |
Small formatting change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60113 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index e2914c0..4e68918 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -992,20 +992,20 @@ throws the same exception) when called with the same set of arguments and global state.</dd> <dt><tt><a name="ssp">ssp</a></tt></dt> -<dd><p>This attribute indicates that the function should emit a stack smashing +<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 the stack before the local variables that's checked upon return from the function to see if it has been overwritten. A heuristic is used to determine if a function -needs stack protectors or not.</p> +needs stack protectors or not. <p>If a function that has an <tt>ssp</tt> attribute is inlined into a function that doesn't have an <tt>ssp</tt> attribute, then the resulting function will have an <tt>ssp</tt> attribute.</p></dd> <dt><tt>sspreq</tt></dt> -<dd><p>This attribute indicates that the function should <em>always</em> emit a +<dd>This attribute indicates that the function should <em>always</em> emit a stack smashing protector. This overrides the <tt><a href="#ssp">ssp</a></tt> -function attribute.</p> +function attribute. <p>If a function that has an <tt>sspreq</tt> attribute is inlined into a function that doesn't have an <tt>sspreq</tt> attribute or which has |