Mithing.
[p5sagit/p5-mst-13.2.git] / op.h
diff --git a/op.h b/op.h
index 6a4d0db..3348435 100644 (file)
--- a/op.h
+++ b/op.h
  *                     which may or may not check number of children).
  */
 
-#if PTRSIZE == 8
-typedef U64TYPE PADOFFSET;
-#else
+#if PTRSIZE == 4
 typedef U32TYPE PADOFFSET;
+#else
+#   if PTRSIZE == 8
+typedef U64TYPE PADOFFSET;
+#   endif
 #endif
 #define NOT_IN_PAD ((PADOFFSET) -1)
 
@@ -151,6 +153,7 @@ Deprecated.  Use C<GIMME_V> instead.
   /* OP_ENTERSUB only */
 #define OPpENTERSUB_DB         16      /* Debug subroutine. */
 #define OPpENTERSUB_HASTARG    32      /* Called from OP tree. */
+#define OPpENTERSUB_NOMOD      64      /* Immune to mod() for :attrlist. */
   /* OP_RV2CV only */
 #define OPpENTERSUB_AMPER      8       /* Used & form to call. */
 #define OPpENTERSUB_NOPAREN    128     /* bare sub call (without parens) */