Skip to content

Commit bb66a3d

Browse files
authored
Update terminology in comptime C functions post
Clarify terminology by replacing 'LTO' with 'Link-time optimization'.
1 parent 11ab40a commit bb66a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2025-11-30-comptime-c-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Compile-time function execution is great, but what if you're:
1111

1212
The below data structure showcase programs get optimized away at compile time by GCC and Clang, such that only the `printf()` at the end of `main()` is left.
1313

14-
[LTO](https://en.wikipedia.org/wiki/Interprocedural_optimization) should in theory allow GCC and Clang to perform this optimization even when the code is split across several object files, but I haven't bothered to test this for the below programs.
14+
[Link-time optimization](https://en.wikipedia.org/wiki/Interprocedural_optimization) should in theory allow GCC and Clang to perform this optimization even when the code is split across several object files, but I haven't bothered to test this for the below programs.
1515

1616
# Generic Stack
1717

0 commit comments

Comments
 (0)