From: Jarkko Hietaniemi Date: Sat, 27 Oct 2001 21:41:02 +0000 (+0000) Subject: Must store pointers with the right width. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=708fe1ba3fb04bc6d3b1ea26809e80e24d765218;p=p5sagit%2Fp5-mst-13.2.git Must store pointers with the right width. p4raw-id: //depot/perl@12716 --- diff --git a/op.h b/op.h index fcb24a5..6a4d0db 100644 --- a/op.h +++ b/op.h @@ -23,7 +23,11 @@ * which may or may not check number of children). */ -typedef UV PADOFFSET; +#if PTRSIZE == 8 +typedef U64TYPE PADOFFSET; +#else +typedef U32TYPE PADOFFSET; +#endif #define NOT_IN_PAD ((PADOFFSET) -1) #ifdef DEBUGGING_OPS