|
From: Florian W. <fw...@de...> - 2005-03-17 15:59:32
|
* Nicholas Nethercote: > Hmm, that's weird -- strcpy() is in that file on my installation, but it > doesn't get inlined. More alarmingly, malloc() is also in that file... if > gcc inlined that (how on earth could it?) that would be a disaster for > Valgrind. Not every builtin results in inlined code. There's a built-in version of malloc because malloc has some interesting properties. For example, the returned pointer can never alias anything else, and it has maximum alignment. |