Skip to content

Commit d253e8b

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent bdc733d commit d253e8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Compile-time function execution is great, but what if you're:
99
2. Don't want to use evil C macros.
1010
3. Want generic data structures that work for all types.
1111

12-
The below programs with GCC and Clang optimizations compile `main()` down to the `printf()` statement that prints that the test passed.
12+
The below programs are optimized away by both GCC and Clang, such that only the `printf()` at the end of `main()` is left.
1313

1414
# Generic Stack
1515

0 commit comments

Comments
 (0)