Explicitly expect only 4 or 8 bytes of PTRSIZE.
Jarkko Hietaniemi [Sun, 28 Oct 2001 03:32:32 +0000 (03:32 +0000)]
No final #else #error because we do not seem to
be using #error?

p4raw-id: //depot/perl@12723

op.h

diff --git a/op.h b/op.h
index 6a4d0db..415514d 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)