this post was submitted on 22 Oct 2023
591 points (95.7% liked)

Programmer Humor

32011 readers
894 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Aceticon 5 points 10 months ago* (last edited 10 months ago)

I was under the impression that modern compilers just inline something like that, and even in older languages (like C) use trickeries are used to inline it (typically MAX is a macro rather than a real function, so its always inlined)

Ultimatelly it depends not just on what you're doing but also the language and compiler you're using.