From: Florian K. <fk...@so...> - 2025-03-05 23:13:06
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=69bc6d7cb08460006c404a8a9062e603ded1b457 commit 69bc6d7cb08460006c404a8a9062e603ded1b457 Author: Florian Krohm <fl...@ei...> Date: Wed Mar 5 23:12:17 2025 +0000 Fix two outdated comments in VEX. main_util.c: The symbol vg_message no longer exists. host_s390_defs.c: In b2cc7ea009ae4f0eaa1197ee6f5c07e0ee873b3a the definition of s390_host_hwcaps was moved to main_main.c Diff: --- VEX/priv/host_s390_defs.h | 2 +- VEX/priv/main_util.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/VEX/priv/host_s390_defs.h b/VEX/priv/host_s390_defs.h index 9d844beeed..957585c396 100644 --- a/VEX/priv/host_s390_defs.h +++ b/VEX/priv/host_s390_defs.h @@ -907,7 +907,7 @@ VexInvalRange patchProfInc_S390(VexEndness endness_host, void *code_to_patch, const ULong *location_of_counter); -/* KLUDGE: See detailled comment in host_s390_defs.c. */ +/* KLUDGE: See detailled comment in main_main.c. */ extern UInt s390_host_hwcaps; /* Convenience macros to test installed facilities */ diff --git a/VEX/priv/main_util.c b/VEX/priv/main_util.c index 670de8b040..fffe4b4263 100644 --- a/VEX/priv/main_util.c +++ b/VEX/priv/main_util.c @@ -543,8 +543,7 @@ UInt vprintf_wrk ( void(*sink)(HChar), /* A general replacement for printf(). Note that only low-level - debugging info should be sent via here. The official route is to - to use vg_message(). This interface is deprecated. + debugging info should be sent via here. */ static HChar myprintf_buf[1000]; static Int n_myprintf_buf; |