From fbaa7edf9356665cfd85a3c012c4035acbc9ba30 Mon Sep 17 00:00:00 2001
From: Bill Wendling 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.
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.
This attribute indicates that the function should always emit a stack smashing protector. This overrides the ssp -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 +an ssp attribute, then the resulting function will have +an sspreq attribute.
-- 2.34.1