Hacker News new | ask | show | jobs
by blattimwind 2187 days ago
Which compiler that can compile modern C++ doesn't always inline a static single-caller function?
1 comments

All of them? There's many cases where it doesn't make sense:

- The function is exported to a library

- The code generator emitted an indirect branch instruction

- The inlined code exceeds the size of a single page in memory

- The inlined code does not perform as well because it is not i-cacheable