|
From: Jeremy F. <je...@go...> - 2005-03-15 20:10:23
|
Bryan O'Sullivan wrote:
>The number of functions that gcc inlines grows like kudzu. You can turn
>off specific VG-sensitive ones like memcpy by invoking the compiler with
>-fno-builtin-memcpy and so on.
>
>See gcc/gcc/builtins.def for a complete list of the stuff that gcc
>handles specially. This frequently changes quite substantially from one
>minor release to the next (e.g. 3.3.2 -> 3.3.3), so don't assume it's
>static.
>
That's OK for our tests, but it would be nice to have something which
works for arbitrary code X.
Does it always inline memcpy, or only the ones with a constant length?
J
|