summaryrefslogtreecommitdiff
path: root/ext/ByteLoader
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-29 20:58:10 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-29 20:58:10 +0000
commit78c6a0b0e14fa8d041f18b63d7947a043a58bad6 (patch)
tree13d8032b148114e8435c533b5641400751fe1584 /ext/ByteLoader
parent2608af5d2f1e161b0f716f20290649e347b4a3a4 (diff)
downloadperl-78c6a0b0e14fa8d041f18b63d7947a043a58bad6.tar.gz
BGET_IV was missing.
p4raw-id: //depot/perl@13369
Diffstat (limited to 'ext/ByteLoader')
-rw-r--r--ext/ByteLoader/bytecode.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h
index 73f3544294..5a779aa0df 100644
--- a/ext/ByteLoader/bytecode.h
+++ b/ext/ByteLoader/bytecode.h
@@ -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); \