BGET_IV was missing.
Jarkko Hietaniemi [Thu, 29 Nov 2001 20:58:10 +0000 (20:58 +0000)]
p4raw-id: //depot/perl@13369

ext/ByteLoader/bytecode.h

index 73f3544..5a779aa 100644 (file)
@@ -72,6 +72,14 @@ typedef IV IV64;
        }                                               \
     } STMT_END
 
+#if IVSIZE == 4
+#   define BGET_IV(arg) BGET_I32(arg)
+#else
+#   if IVSIZE == 8
+#       define BGET_IV(arg) BGET_IV64(arg)
+#   endif
+#endif
+
 #define BGET_op_tr_array(arg) do {                     \
        unsigned short *ary;                            \
        New(666, ary, 256, unsigned short);             \