From 2d2ee338f3427d39d9977c77b09e5d335b6e362b Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Wed, 29 Dec 2021 22:06:19 -0500 Subject: [PATCH] YJIT: Avoid pointer size assumption with intptr_t Cast to `void *` first to use the definition of `intptr_t`. --- yjit_iface.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yjit_iface.c b/yjit_iface.c index 339c5cd455..bd0d25b7d7 100644 --- a/yjit_iface.c +++ b/yjit_iface.c @@ -1180,8 +1180,7 @@ rb_yjit_call_threshold(void) return rb_yjit_opts.call_threshold; } -/* assume sizeof(void*) == sizeof(size_t) */ -# define PTR2NUM(x) (SSIZET2NUM((ssize_t)(x))) +# define PTR2NUM(x) (rb_int2inum((intptr_t)(void *)(x))) /** * call-seq: block.id -> unique_id