http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59048
--- Comment #10 from Luca Stoppa <luca.stoppa at bbh dot com> --- Hi, honestly I don't know what PIC means, but I did like you suggested. I have added a wrapper to memcmp() that is not inlined. __attribute__((noinline)) int memcmp_not_inlined (const char *s1, const char *s2, size_t bytes) { return memcmp(s1,s2,bytes); } Basically I got exactly the same results.