diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-29 20:58:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-29 20:58:10 +0000 |
commit | 3c690e50d4e298303d94436807baaa943a4f64c0 (patch) | |
tree | 13d8032b148114e8435c533b5641400751fe1584 /ext/ByteLoader/bytecode.h | |
parent | d42e3a454da20b9dff11f5bc0dc803eadcdcd756 (diff) | |
download | perl-3c690e50d4e298303d94436807baaa943a4f64c0.tar.gz |
BGET_IV was missing.
p4raw-id: //depot/perl@13369
Diffstat (limited to 'ext/ByteLoader/bytecode.h')
-rw-r--r-- | ext/ByteLoader/bytecode.h | 8 |
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); \ |