From 08f60f1efc5db5de79361cf0362b21be1b5cb314 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 25 Dec 2024 08:27:33 -0800 Subject: [PATCH] Update changelog --- ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 8bad82f4..37dd5c5d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,12 +17,14 @@ `fmt::print("{}", 42)` was reduced by ~40% on GCC and ~60% on clang (x86-64). GCC: + - Before: 161 instructions of which 105 are in reusable functions ([godbolt](https://www.godbolt.org/z/s9bGoo4ze)). - After: 116 instructions of which 60 are in reusable functions ([godbolt](https://www.godbolt.org/z/r7GGGxMs6)). Clang: + - Before: 310 instructions of which 251 are in reusable functions ([godbolt](https://www.godbolt.org/z/Ts88b7M9o)). - After: 194 instructions of which 135 are in reusable functions