diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-27 21:41:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-27 21:41:02 +0000 |
commit | 708fe1ba3fb04bc6d3b1ea26809e80e24d765218 (patch) | |
tree | 4711ec18f848dfa2c1aa9971466edfbc69fe7cbc /op.h | |
parent | 03ccd19c2d69cac5373dca435e14989aa566a10e (diff) | |
download | perl-708fe1ba3fb04bc6d3b1ea26809e80e24d765218.tar.gz |
Must store pointers with the right width.
p4raw-id: //depot/perl@12716
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |