Choosing the Safe Optimize option reduces the amount of compiler optimization but protects your code against compiler-induced errors. Safe optimizing prevents runtime uncertainty that could cause an optimized program to fail, even though the source code seems to be correct. For example, imagine the following situation:
setq is intended to alter the definition of the function fishlips, direct linking will prevent this from happening. The first definition will be referenced directly and cannot be changed by the setq function. On the other hand, if the identical names are handled independently, fishlips can be linked without creating incorrect code.
Now there are two possible conditions. If the value assigned throughfishlips be directly linked. This may result in less efficient code, but it ensures code correctness. If safe optimizing is off, you can override the compiler's recommendation to link fishlips indirectly. You are responsible for the link option.
If safe optimizing is on, the compiler will always stay on the safe side, even if you explicitly request thatThe Safe Optimize mode is on by default. Be sure you fully understand the consequences before you turn it off.