Skip to content

Commit 61790c0

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent 92e770c commit 61790c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ The best use-case I can think of for this technique is generating lookup tables
3030
- Constant buffer addresses + sizes let the optimizer trace through `memcpy()` calls.
3131
- All operations become statically analyzable, reducing to constants.
3232
- `assert()` calls get eliminated when conditions are provably true.
33-
34-
[Link-time optimization](https://en.wikipedia.org/wiki/Interprocedural_optimization) with `-flto` should allow Clang and GCC to perform these optimizations even when the code is split across several object files.
33+
- [Link-time optimization](https://en.wikipedia.org/wiki/Interprocedural_optimization) with `-flto` should allow Clang and GCC to perform these optimizations even when the code is split across several object files.
3534

3635
# Generic Stack
3736

0 commit comments

Comments
 (0)