diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-20 15:27:28 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-20 15:27:28 +0000 |
commit | d5ec2987912a76b3059b7bd1d06cf02b4d0dae0c (patch) | |
tree | 6d477542cce33da4dc5bf3735207faff526dcb55 /op.c | |
parent | da1b432288c7bdd52edfc35caa4160c03c637985 (diff) | |
download | perl-d5ec2987912a76b3059b7bd1d06cf02b4d0dae0c.tar.gz |
Move the hints from op_private into cop_hints. This allows all 32 bits
to be stored. Make B::Concise display the new hints field, and modify
B::Deparse to use it.
p4raw-id: //depot/perl@28257
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5832,7 +5832,7 @@ Perl_ck_bitop(pTHX_ OP *o) (op) == OP_EQ || (op) == OP_I_EQ || \ (op) == OP_NE || (op) == OP_I_NE || \ (op) == OP_NCMP || (op) == OP_I_NCMP) - o->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK); + o->op_private = (U8)(PL_hints & HINT_INTEGER); if (!(o->op_flags & OPf_STACKED) /* Not an assignment */ && (o->op_type == OP_BIT_OR || o->op_type == OP_BIT_AND |