Skip to content

Commit 412e554

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent 4507839 commit 412e554

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
@@ -22,7 +22,7 @@ main:
2222

2323
Here is how it is achieved in C:
2424
- `static inline` allows inlining across compilation boundaries.
25-
- `__attribute__((always_inline))` forces the compiler to inline functions.
25+
- `__attribute__((always_inline))` *strongly* urges compilers to inline functions.
2626
- Constant buffer addresses + sizes let the optimizer trace through `memcpy()` calls.
2727
- All operations become statically analyzable, reducing to constants.
2828
- `assert()` calls get eliminated when conditions are provably true.

0 commit comments

Comments
 (0)