
12 Dec
2007
12 Dec
'07
2:32 p.m.
On Wed, 12 Dec 2007 08:23:00 -0500 Jerry Van Baren gerald.vanbaren@ge.com wrote:
Should you make the flash_write*() functions inline?
Yeah...they usually end up inline anyway since they're so simple, but I guess it doesn't hurt to make it explicit.
In general, I think it's best not to add "inline" to static functions as it allows the compiler to decide whether or not to inline based on optimization flags, etc.
Haavard