Must store pointers with the right width.
Jarkko Hietaniemi [Sat, 27 Oct 2001 21:41:02 +0000 (21:41 +0000)]
p4raw-id: //depot/perl@12716

op.h

diff --git a/op.h b/op.h
index fcb24a5..6a4d0db 100644 (file)
--- a/op.h
+++ b/op.h
  *                     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