Hi Alexander,
* GCC supports a new option: -fno-plt
Not all architectures support this option, and some other
optimization features, such as lazy binding, may disable it.
The last paragraph looks confusing to be on both points. '-fno-plt' is
implemented as a transformation
Hello,
A couple of comments below.
On Mon, 18 May 2015, Nick Clifton wrote:
> val |= ~0 << loaded;// Generates warning
> val |= (unsigned) ~0 << loaded; // Does not warn
To reduce verbosity, '~0u' can be used here instead of a cast.
> * GCC supports a new option: -fn