|
From: Paul F. <pa...@so...> - 2023-02-01 20:48:23
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=bca6837b1525a5abfde593019ddf489620d92153 commit bca6837b1525a5abfde593019ddf489620d92153 Author: Paul Floyd <pj...@wa...> Date: Wed Feb 1 21:44:31 2023 +0100 Pack Lackey Event structure Seen by cppcheck. Will reduced size from 4 to 3 words on 64bit platforms. Diff: --- lackey/lk_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lackey/lk_main.c b/lackey/lk_main.c index e19b39f16f..8ee62a78bb 100644 --- a/lackey/lk_main.c +++ b/lackey/lk_main.c @@ -408,8 +408,8 @@ typedef typedef struct { - EventKind ekind; IRAtom* addr; + EventKind ekind; Int size; IRAtom* guard; /* :: Ity_I1, or NULL=="always True" */ } |