[gcc r13-6093] libstdc++: printf format string fix in testsuite

Matthias Kretz mkretz@gcc.gnu.org
Thu Feb 16 14:59:06 GMT 2023


https://gcc.gnu.org/g:07e4648b4ab86a76ab040ea18a756e388652c882

commit r13-6093-g07e4648b4ab86a76ab040ea18a756e388652c882
Author: Matthias Kretz <m.kretz@gsi.de>
Date:   Thu Feb 2 12:28:39 2023 +0100

    libstdc++: printf format string fix in testsuite
    
    Signed-off-by: Matthias Kretz <m.kretz@gsi.de>
    
    libstdc++-v3/ChangeLog:
    
            * testsuite/experimental/simd/tests/bits/verify.h
            (verify::verify): Use %zx for size_t in format string.

Diff:
---
 libstdc++-v3/testsuite/experimental/simd/tests/bits/verify.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/testsuite/experimental/simd/tests/bits/verify.h b/libstdc++-v3/testsuite/experimental/simd/tests/bits/verify.h
index 2ab3ad3fa8c..01ad50bd01a 100644
--- a/libstdc++-v3/testsuite/experimental/simd/tests/bits/verify.h
+++ b/libstdc++-v3/testsuite/experimental/simd/tests/bits/verify.h
@@ -137,7 +137,7 @@ public:
     {
       if (m_failed)
 	[&] {
-	  __builtin_fprintf(stderr, "%s:%d: (%s):\nInstruction Pointer: %x\n"
+	  __builtin_fprintf(stderr, "%s:%d: (%s):\nInstruction Pointer: %zx\n"
 				    "Assertion '%s' failed.\n",
 			    file, line, func, m_ip, cond);
 	  (print(extra_info, int()), ...);


More information about the Libstdc++-cvs mailing list