Make the I32 an IV to preserve structure alignment and size.
Jarkko Hietaniemi [Wed, 11 Jul 2001 13:15:49 +0000 (13:15 +0000)]
p4raw-id: //depot/perl@11275

op.h

diff --git a/op.h b/op.h
index 352d358..33afa0a 100644 (file)
--- a/op.h
+++ b/op.h
@@ -236,7 +236,7 @@ struct pmop {
     OP *       op_pmreplstart;
     PMOP *     op_pmnext;              /* list of all scanpats */
 #ifdef USE_ITHREADS
-    I32         op_pmoffset;
+    IV          op_pmoffset;
 #else
     REGEXP *    op_pmregexp;            /* compiled expression */
 #endif