diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-21 15:47:15 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-21 15:47:15 +0000 |
commit | 17347a51432ece1d1c1dc2715f58c72fdcf99fbc (patch) | |
tree | 1370bce88296aa4b950dc295b82d769f8eee7f4e /op.h | |
parent | 85a646323d457a108a69d6fa2e42cbaca4201c8b (diff) | |
download | perl-17347a51432ece1d1c1dc2715f58c72fdcf99fbc.tar.gz |
In struct block_eval, eliminate old_in_eval and old_op_type by storing
the data in blk_u16.
p4raw-id: //depot/perl@33030
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -64,6 +64,8 @@ U8 op_private; #endif +/* If op_type:9 is changed to :10, also change PUSHEVAL in cop.h */ + #define OP_GIMME(op,dfl) \ (((op)->op_flags & OPf_WANT) == OPf_WANT_VOID ? G_VOID : \ ((op)->op_flags & OPf_WANT) == OPf_WANT_SCALAR ? G_SCALAR : \ |