summaryrefslogtreecommitdiff
path: root/libcxxabi
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2023-04-05 14:52:30 +0300
committerMartin Storsjö <martin@martin.st>2023-04-17 17:49:56 +0300
commitc4a735d445fd2e780e6e45e80ae721c0bd3d05d1 (patch)
treef962e12e66178484d6a180441bd5a0a6b47de139 /libcxxabi
parent2069bce4cfef31468c979e7d157d8fe84bfd2a70 (diff)
downloadllvm-c4a735d445fd2e780e6e45e80ae721c0bd3d05d1.tar.gz
[libcxxabi] [test] Use the correct printf formats for printing pointers
Don't cast the pointers to long, as that's not large enough for pointers on 64 bit Windows. Differential Revision: https://reviews.llvm.org/D147640
Diffstat (limited to 'libcxxabi')
-rw-r--r--libcxxabi/test/test_fallback_malloc.pass.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libcxxabi/test/test_fallback_malloc.pass.cpp b/libcxxabi/test/test_fallback_malloc.pass.cpp
index e7d22a57d2bc..ff6ef60710c5 100644
--- a/libcxxabi/test/test_fallback_malloc.pass.cpp
+++ b/libcxxabi/test/test_fallback_malloc.pass.cpp
@@ -9,6 +9,7 @@
#include <cstdio>
#include <deque>
#include <cassert>
+#include <inttypes.h>
#include <__threading_support>
@@ -192,11 +193,11 @@ int main () {
print_free_list ();
char *p = (char *) fallback_malloc ( 1024 ); // too big!
- std::printf("fallback_malloc ( 1024 ) --> %lu\n", (unsigned long ) p);
+ std::printf("fallback_malloc ( 1024 ) --> %" PRIuPTR"\n", (uintptr_t) p);
print_free_list ();
p = (char *) fallback_malloc ( 32 );
- std::printf("fallback_malloc ( 32 ) --> %lu\n", (unsigned long) (p - heap));
+ std::printf("fallback_malloc ( 32 ) --> %" PRIuPTR"\n", (uintptr_t) (p - heap));
if ( !is_fallback_ptr ( p ))
std::printf("### p is not a fallback pointer!!\n");