A couple of File::Path tests require unix syntax on VMS.
[p5sagit/p5-mst-13.2.git] / op.h
diff --git a/op.h b/op.h
index 2d46fcf..c340f04 100644 (file)
--- a/op.h
+++ b/op.h
@@ -313,9 +313,6 @@ struct listop {
 
 struct pmop {
     BASEOP
-    /* On LP64 putting this here takes advantage of the fact that BASEOP isn't
-       an exact multiple of 8 bytes to save structure padding.  */
-    U32                op_pmflags;
     OP *       op_first;
     OP *       op_last;
 #ifdef USE_ITHREADS
@@ -323,6 +320,7 @@ struct pmop {
 #else
     REGEXP *    op_pmregexp;            /* compiled expression */
 #endif
+    U32         op_pmflags;
     union {
        OP *    op_pmreplroot;          /* For OP_SUBST */
 #ifdef USE_ITHREADS