summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-05-20 15:27:28 +0000
committerNicholas Clark <nick@ccl4.org>2006-05-20 15:27:28 +0000
commitd5ec2987912a76b3059b7bd1d06cf02b4d0dae0c (patch)
tree6d477542cce33da4dc5bf3735207faff526dcb55 /op.c
parentda1b432288c7bdd52edfc35caa4160c03c637985 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 5afda98f6f..bf942e16f2 100644
--- a/op.c
+++ b/op.c
@@ -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