One of the key differences between coding for an embedded system or for a desktop computer is compiler optimization. For…
My latest video blog is now available. This time I am looking at inlining C/C++ functions and how this may…
Recently, I blogged about a video in which I talked about inlining of code. I thought that this was an…
My latest video blog is now available. I am talking about the use of inline code – a common speed…
A common compiler optimization is the inclusion of a function’s code at the location(s) from where the function is called,…
The idea of inlining code – placing the actual code of a small function at each call site – is…