From d8a4b1ec059bff0addf04421fc54dca1041a44cb Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 26 Nov 2008 19:19:05 +0000 Subject: [PATCH] Small formatting change. llvm-svn: 60113 --- docs/LangRef.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index e2914c0f295..4e689186837 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.
ssp
-

This attribute indicates that the function should emit a stack smashing +

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.

+needs stack protectors or not.

If a function that has an ssp attribute is inlined into a function that doesn't have an ssp attribute, then the resulting function will have an ssp attribute.

sspreq
-

This attribute indicates that the function should always emit a +

This attribute indicates that the function should always emit a stack smashing protector. This overrides the ssp -function attribute.

+function attribute.

If a function that has an sspreq attribute is inlined into a function that doesn't have an sspreq attribute or which has