Skip to content

Commit 9daaf42

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent 31d4b68 commit 9daaf42

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
@@ -194,7 +194,7 @@ int main() {
194194
195195
Because a hash map is a much more complex data structure than a stack, GCC struggles to optimize it perfectly, even with macros.
196196
197-
Clang manages to completely optimize a macro-based hash map away.
197+
Clang on the other hand manages to completely optimize the below macro-based hash map away, which isn't surprising, given that Clang generally produces more optimized Assembly than GCC.
198198
199199
GCC doesn't on the other hand, even when passed these extra flags:
200200
- `-finline-limit=999999`

0 commit comments

Comments
 (0)