svn commit: r187475 - head/usr.bin/make
David Schultz
das at FreeBSD.ORG
Tue Jan 20 11:09:42 PST 2009
On Tue, Jan 20, 2009, Roman Divacky wrote:
> Remove inlining of functions that are used mostly in different object files.
> This gets rid of gnu89 style inlining.
While I think fixing uses of 'inline' in the tree is a great goal,
un-inlining accessor functions that compile down to a single
machine instruction anyway may not be the best way to approach it.
In cases like this, you can just use '__gnu89_inline', or even
'static inline' without causing any bloat. (In this particular
case, I doubt that it really matters one way or the other.)
More information about the svn-src-head
mailing list